From: Marcus Boerger Date: Sun, 14 Dec 2003 15:41:50 +0000 (+0000) Subject: Removed doubled loop from wrongly applied patch X-Git-Tag: php-5.0.0b3RC1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1e905dfc12e88597b12cfbe7994a2324656e698;p=php Removed doubled loop from wrongly applied patch --- diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index a47cfacfad..112d3cf5c4 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -157,11 +157,6 @@ TSRM_API void tsrm_shutdown(void) int j; next_p = p->next; - for (j=0; jcount; j++) { - if (resource_types_table[j].dtor) { - resource_types_table[j].dtor(p->storage[j], &p->storage); - } - } for (j=0; jcount; j++) { if (resource_types_table && resource_types_table[j].dtor) { resource_types_table[j].dtor(p->storage[j], &p->storage);