From: Evan Klinger Date: Wed, 24 Nov 1999 06:16:37 +0000 (+0000) Subject: Freeing the memory would be a good idea... X-Git-Tag: PRE_RETURN_REF_PATCH~267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18fb96efb41906f5cfac618820e5541e4b0d4e01;p=php Freeing the memory would be a good idea... --- diff --git a/ext/standard/file.c b/ext/standard/file.c index f9384b1768..4fce9179bc 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1713,6 +1713,7 @@ PHP_FUNCTION(fd_set) FD_SET(fd, &readfd); if(fd > max_fd) max_fd = fd; } + efree(args); } RETURN_LONG(1); }