1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00

C89 compat

This commit is contained in:
Anatol Belski
2014-08-18 22:36:38 +02:00
parent 0f5bad93fd
commit de707df5e6

View File

@@ -1138,9 +1138,9 @@ static char *php_mcrypt_get_key_size_str(
return str;
} else {
int i;
char *result = NULL;
smart_str str = {0};
smart_str_appends(&str, "Only keys of sizes ");
char *result = NULL;
for (i = 0; i < key_size_count; ++i) {
if (i == key_size_count - 1) {