From 18fb96efb41906f5cfac618820e5541e4b0d4e01 Mon Sep 17 00:00:00 2001 From: Evan Klinger Date: Wed, 24 Nov 1999 06:16:37 +0000 Subject: [PATCH] Freeing the memory would be a good idea... --- ext/standard/file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/standard/file.c b/ext/standard/file.c index f9384b17689..4fce9179bcb 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); }