Browse Source

- Fix memleak (patch by Stefan Sesser)

experimental/new_apache_hooks
Derick Rethans 24 years ago
parent
commit
1db85d6651
  1. 3
      Zend/zend_llist.c

3
Zend/zend_llist.c

@ -140,6 +140,9 @@ ZEND_API void *zend_llist_remove_tail(zend_llist *l)
data = old_tail->data;
l->tail = l->tail->prev;
if (l->dtor) {
l->dtor(data);
}
pefree(old_tail, l->persistent);
--l->count;

Loading…
Cancel
Save