ID: 9564
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Closed
Bug Type: *Session related
Operating System: Any
PHP Version: 4.0 Latest CVS (05/03/2001)
New Comment:
Thank you for fixed this bug at revision 1.21 (19th July 2001).
Previous Comments:
------------------------------------------------------------------------
[2001-03-16 17:39:23] [EMAIL PROTECTED]
Thanks for your report. The specific code was changed in the past and was not affected
by that bug anymore.
------------------------------------------------------------------------
[2001-03-05 11:25:15] [EMAIL PROTECTED]
It's wrong increment nrdels in PS_GC_FUNC(mm)
'*nrdels++' incremnts nrdels as pointer,
but nrdels is allocated on the stack in php_session_start(PSLS_D).
This is a patch for a local copy of my repositry,
--- mod_mm.c 2001/01/13 10:54:33 1.1.1.2
+++ mod_mm.c 2001/03/05 16:11:46
@@ -333,7 +333,7 @@
ps_mm_debug("looking at %s\n", sd->key);
if ((now - sd->ctime) > maxlifetime) {
ps_sd_destroy(data, sd);
- *nrdels++;
+ (*nrdels)++;
}
}
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=9564&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]