diff options
author | Zeev Suraski <zeev@php.net> | 2001-03-06 15:10:53 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-03-06 15:10:53 +0000 |
commit | 800950c5a79955e53a7af2b0b16e37184ada9e87 (patch) | |
tree | 72ddfb19d9d63ee9b02d9bf629a487d1a8f04486 /sapi/apache/mod_php4.c | |
parent | a40f208ab802ba353e80dd01597c0bc210f3a415 (diff) | |
download | php-git-800950c5a79955e53a7af2b0b16e37184ada9e87.tar.gz |
Avoid using ret uninitialized
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |