diff options
author | Ben Mansell <joosters@php.net> | 2000-06-20 11:35:12 +0000 |
---|---|---|
committer | Ben Mansell <joosters@php.net> | 2000-06-20 11:35:12 +0000 |
commit | 6a449f2b02f2628ced3421cfa5a65b236fad1b9b (patch) | |
tree | 197736191afe8038d611af15014e191beb8723b5 | |
parent | a18d4d208598c9484f7b75de11de3debe01ab502 (diff) | |
download | php-git-6a449f2b02f2628ced3421cfa5a65b236fad1b9b.tar.gz |
Initialise lcg_globals correctly
# Fixes bug 5075
-rw-r--r-- | ext/standard/basic_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index e8041651a8..7ffc3a4ea3 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -661,6 +661,7 @@ PHP_MINIT_FUNCTION(basic) PHP_MINIT(fsock)(INIT_FUNC_ARGS_PASSTHRU); PHP_MINIT(pack)(INIT_FUNC_ARGS_PASSTHRU); PHP_MINIT(browscap)(INIT_FUNC_ARGS_PASSTHRU); + PHP_MINIT(lcg)(INIT_FUNC_ARGS_PASSTHRU); #if HAVE_CRYPT PHP_MINIT(crypt)(INIT_FUNC_ARGS_PASSTHRU); |