From 800950c5a79955e53a7af2b0b16e37184ada9e87 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Tue, 6 Mar 2001 15:10:53 +0000 Subject: Avoid using ret uninitialized --- sapi/apache/mod_php4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/apache/mod_php4.c') 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)) { -- cgit v1.2.1