From: Jani Taskinen Date: Thu, 8 Oct 2009 10:33:26 +0000 (+0000) Subject: - Fixed bug #49503 (invalid warning for failed semaphore file creation) X-Git-Tag: php-5.2.12RC1~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=875c91b415d110c771aebeb3be3282c08ca31d5d;p=php - 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.. :( --- diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index 7e102881c7..78f1b8fcc5 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -219,9 +219,6 @@ static int ps_mm_initialize(ps_mm *data, const char *path) 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; }