From a8d4bb9d287b58a67d2cb532a469ae40f1b07268 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Mon, 4 Nov 2002 17:38:30 +0000 Subject: [PATCH] Silence compiler warning. --- ext/standard/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1