From: Zeev Suraski Date: Tue, 6 Mar 2001 15:10:53 +0000 (+0000) Subject: Avoid using ret uninitialized X-Git-Tag: php-4.0.5RC1~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=800950c5a79955e53a7af2b0b16e37184ada9e87;p=php Avoid using ret uninitialized --- diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 8772fdb705..5a497e2dfa 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -119,7 +119,7 @@ void php_save_umask(void) static int sapi_apache_ub_write(const char *str, uint str_length) { - int ret; + int ret=0; SLS_FETCH(); if (SG(server_context)) {