From 3cf581b1b3dbd992669ae3c8f80f71db576a2a9d Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 5 Dec 2002 20:41:55 +0000 Subject: [PATCH] correct code that is guarded by "#if 0" --- ext/session/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/session/session.c b/ext/session/session.c index 29bc9466c2..8b6be415ab 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -98,7 +98,7 @@ static PHP_INI_MH(OnUpdateSaveHandler) #if 0 if(!PS(mod)) { - php_error_docref(E_ERROR, "Cannot find save handler %s", new_value); + php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find save handler %s", new_value); } #endif return SUCCESS; @@ -119,7 +119,7 @@ static PHP_INI_MH(OnUpdateSerializer) #if 0 if(!PS(serializer)) { - php_error_docref(E_ERROR, "Cannot find serialization handler %s", new_value); + php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find serialization handler %s", new_value); } #endif return SUCCESS; -- 2.50.1