diff options
author | Wez Furlong <wez@php.net> | 2002-03-19 17:49:02 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-19 17:49:02 +0000 |
commit | 14a3911866c0f69f4e5eafc8f7d320878d1b995c (patch) | |
tree | 561d813ef64f5fb9a27bc0f2ca4615c846b96d6e /ext/standard/file.c | |
parent | b92f2da5fa2fd69de34f3f0136078db7410ae15f (diff) | |
download | php-git-14a3911866c0f69f4e5eafc8f7d320878d1b995c.tar.gz |
fix for bug #16168
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index 727faa96ca..a58b511902 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -126,6 +126,7 @@ static void file_globals_ctor(php_file_globals *file_globals_p TSRMLS_DC) zend_hash_init(&FG(ht_persistent_socks), 0, NULL, NULL, 1); FG(fgetss_state) = 0; FG(pclose_ret) = 0; + FG(def_chunk_size) = PHP_SOCK_CHUNK_SIZE; } |