From: Ilia Alshanetsky Date: Mon, 4 Nov 2002 17:38:30 +0000 (+0000) Subject: Silence compiler warning. X-Git-Tag: php-4.3.0RC1~290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8d4bb9d287b58a67d2cb532a469ae40f1b07268;p=php Silence compiler warning. --- diff --git a/ext/standard/exec.c b/ext/standard/exec.c index b962ea90c3..e9bcd86b9f 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -946,7 +946,7 @@ PHP_FUNCTION(proc_open) * ends, where appropriate */ for (i = 0; i < ndesc; i++) { FILE *fp; - char *mode_string; + char *mode_string=NULL; php_stream *stream; close_descriptor(descriptors[i].childend);