jani Thu, 08 Oct 2009 10:33:26 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=289338
Log: - Fixed bug #49503 (invalid warning for failed semaphore file creation) # I have no idea why I had added this. Might have been some debug code.. :( Bug: http://bugs.php.net/49503 (Assigned) "failed to open semaphore file" Changed paths: U php/php-src/branches/PHP_5_2/ext/session/mod_mm.c Modified: php/php-src/branches/PHP_5_2/ext/session/mod_mm.c =================================================================== --- php/php-src/branches/PHP_5_2/ext/session/mod_mm.c 2009-10-08 10:02:44 UTC (rev 289337) +++ php/php-src/branches/PHP_5_2/ext/session/mod_mm.c 2009-10-08 10:33:26 UTC (rev 289338) @@ -219,9 +219,6 @@ data->owner = getpid(); data->mm = mm_create(0, path); if (!data->mm) { - TSRMLS_FETCH(); - - php_error_docref(NULL TSRMLS_CC, E_WARNING, "mm_create(0, %s) failed, err %s", path, mm_error()); return FAILURE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php