Browse Source

Fixed small memory leak that occurs when the invalid line length is passed

to the qprint ctor.
PHP-5
Moriyoshi Koizumi 24 years ago
parent
commit
a0be48c109
  1. 3
      ext/standard/filters.c

3
ext/standard/filters.c

@ -1265,6 +1265,9 @@ out_failure:
php_conv_dtor(read_cd);
pefree(read_cd, persistent);
}
if (inst->filtername != NULL) {
pefree(inst->filtername, persistent);
}
return FAILURE;
}

Loading…
Cancel
Save