We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f17df7 commit a9561d0Copy full SHA for a9561d0
1 file changed
frankenphp.c
@@ -248,8 +248,8 @@ static void frankenphp_restore_ini(void) {
248
/* Entry was not in snapshot: collect for restore to startup default */
249
if (restore_count >= restore_capacity) {
250
restore_capacity = restore_capacity ? restore_capacity * 2 : 8;
251
- entries_to_restore =
252
- erealloc(entries_to_restore, restore_capacity * sizeof(zend_string *));
+ entries_to_restore = erealloc(entries_to_restore,
+ restore_capacity * sizeof(zend_string *));
253
}
254
entries_to_restore[restore_count++] = zend_string_copy(entry_name);
255
} else if (!zend_string_equals(ini_entry->value, snapshot_value)) {
0 commit comments