]> granicus.if.org Git - php/commitdiff
- Fixed bug #49503 (invalid warning for failed semaphore file creation)
authorJani Taskinen <jani@php.net>
Thu, 8 Oct 2009 10:33:26 +0000 (10:33 +0000)
committerJani Taskinen <jani@php.net>
Thu, 8 Oct 2009 10:33:26 +0000 (10:33 +0000)
# I have no idea why I had added this. Might have been some debug code.. :(

ext/session/mod_mm.c

index 7e102881c7dafa2adb0582d8f4bc3adc4b2106ab..78f1b8fcc55c6072e40f7f90fa212a33a353465f 100644 (file)
@@ -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;
        }