Date: 05/30/98
- Next message: Tim Hudson: "Re: [PHP-DEV] Interesting thread problem in windows..."
- Previous message: Zeev Suraski: "Re: [PHP-DEV] False memory leak from debugger.c"
- Next in thread: rasmus: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Saturday May 30, 1998 @ 22:24
Author: jim
Update of /repository/php3/functions
In directory asf:/tmp/cvs-serv15303/functions
Modified Files:
info.c
Log Message:
Fix harmless memory leak.
Index: php3/functions/info.c
diff -c php3/functions/info.c:1.54 php3/functions/info.c:1.55
*** php3/functions/info.c:1.54 Sat May 23 16:11:00 1998
--- php3/functions/info.c Sat May 30 22:24:46 1998
***************
*** 241,246 ****
--- 241,247 ----
for (env=environ; env!=NULL && *env !=NULL; env++) {
tmp1 = estrdup(*env);
if (!(tmp2=strchr(tmp1,'='))) { /* malformed entry? */
+ efree(tmp1);
continue;
}
*tmp2 = 0;
- Next message: Tim Hudson: "Re: [PHP-DEV] Interesting thread problem in windows..."
- Previous message: Zeev Suraski: "Re: [PHP-DEV] False memory leak from debugger.c"
- Next in thread: rasmus: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

