Browse Source

Avoid using ret uninitialized

PHP-4.0.5
Zeev Suraski 26 years ago
parent
commit
800950c5a7
  1. 2
      sapi/apache/mod_php4.c

2
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)) {

Loading…
Cancel
Save