From: Dmitry Stogov Date: Tue, 19 Feb 2013 14:07:23 +0000 (+0400) Subject: Fixed static analyser warning X-Git-Tag: php-5.5.0beta1~42^2~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4813a711749df756088f049cadb58f13fe60721d;p=php Fixed static analyser warning --- diff --git a/ZendAccelerator.c b/ZendAccelerator.c index 79eb7f4a34..f9b39fc63c 100644 --- a/ZendAccelerator.c +++ b/ZendAccelerator.c @@ -2183,6 +2183,7 @@ static void zend_accel_init_shm(TSRMLS_D) accel_shared_globals = zend_shared_alloc(sizeof(zend_accel_shared_globals)); if (!accel_shared_globals) { zend_accel_error(ACCEL_LOG_FATAL, "Insufficient shared memory!"); + return; } ZSMMG(app_shared_globals) = accel_shared_globals;