We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e71a1 commit 5269ea0Copy full SHA for 5269ea0
1 file changed
frankenphp.c
@@ -256,8 +256,8 @@ static void frankenphp_restore_ini(void) {
256
/* Entry was not in snapshot: collect for restore to startup default */
257
if (restore_count >= restore_capacity) {
258
restore_capacity = restore_capacity ? restore_capacity * 2 : 8;
259
- entries_to_restore =
260
- erealloc(entries_to_restore, restore_capacity * sizeof(zend_string *));
+ entries_to_restore = erealloc(entries_to_restore,
+ restore_capacity * sizeof(zend_string *));
261
}
262
entries_to_restore[restore_count++] = zend_string_copy(entry_name);
263
} else if (!zend_string_equals(ini_entry->value, snapshot_value)) {
0 commit comments