From: Wez Furlong Date: Mon, 23 Feb 2004 21:03:58 +0000 (+0000) Subject: Ooops, these should not be pointers ;) X-Git-Tag: RELEASE_0_2_0~203 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b95eccf7e1235432ec43cb61e4e20aed37c7fb2;p=php Ooops, these should not be pointers ;) --- diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index eaaff4f9cd..aae3982161 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -172,7 +172,7 @@ typedef struct _php_basic_globals { /* filestat.c && main/streams/streams.c */ char *CurrentStatFile, *CurrentLStatFile; - php_stream_statbuf *ssb, *lssb; + php_stream_statbuf ssb, lssb; /* rand.c */ php_uint32 state[MT_N+1]; /* state vector + 1 extra to not violate ANSI C */