From: Ilia Alshanetsky Date: Fri, 31 Dec 2004 03:16:50 +0000 (+0000) Subject: Don't forget to init a variable. X-Git-Tag: php-4.3.11RC1~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2ede86923614f996b5a88d47024e547e80de519;p=php Don't forget to init a variable. --- diff --git a/ext/crack/crack.c b/ext/crack/crack.c index e16e1c14ac..f8f7eb2d01 100644 --- a/ext/crack/crack.c +++ b/ext/crack/crack.c @@ -230,6 +230,7 @@ ZEND_FUNCTION(crack_check) if (zend_get_parameters_ex(2, &dictionary, &password) == FAILURE) { RETURN_FALSE; } + id = Z_LVAL_PP(dictionary); break; default: WRONG_PARAM_COUNT;