From: Dmitry Stogov Date: Wed, 10 Jan 2007 07:04:49 +0000 (+0000) Subject: Fixed SIGSEGV X-Git-Tag: php-5.2.1RC3~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae792a06b0362176ddf313859cb09917cb7d0aad;p=php Fixed SIGSEGV --- diff --git a/ext/session/session.c b/ext/session/session.c index 0a0c19979a..6b72224882 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -328,11 +328,10 @@ PHPAPI void php_add_session_var(char *name, size_t namelen TSRMLS_DC) if (PG(register_globals)) { zval **sym_global = NULL; - zend_hash_find(&EG(symbol_table), name, namelen + 1, - (void *) &sym_global); - - if ((Z_TYPE_PP(sym_global) == IS_ARRAY && Z_ARRVAL_PP(sym_global) == &EG(symbol_table)) || *sym_global == PS(http_session_vars)) { - return; + if (zend_hash_find(&EG(symbol_table), name, namelen + 1, (void *) &sym_global) == SUCCESS) { + if ((Z_TYPE_PP(sym_global) == IS_ARRAY && Z_ARRVAL_PP(sym_global) == &EG(symbol_table)) || *sym_global == PS(http_session_vars)) { + return; + } } if (sym_global == NULL && sym_track == NULL) {