diff options
| author | Andrei Zmievski <andrei@php.net> | 1999-10-07 13:23:33 +0000 |
|---|---|---|
| committer | Andrei Zmievski <andrei@php.net> | 1999-10-07 13:23:33 +0000 |
| commit | 0d89395481b261acea2b1340a6abd8b28dfaaf5e (patch) | |
| tree | a0a43b0c79254bff03a628bc89d09fb678728277 | |
| parent | 2148fe61a00426a66c552a1c6d757bd93db21e21 (diff) | |
| download | php-git-0d89395481b261acea2b1340a6abd8b28dfaaf5e.tar.gz | |
Fix for #2457.
| -rw-r--r-- | request_info.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/request_info.c b/request_info.c index 86f3bcc22c..7c917584c4 100644 --- a/request_info.c +++ b/request_info.c @@ -91,6 +91,7 @@ int php3_init_request_info(void *conf) int php3_destroy_request_info(void *conf) { /* see above for why we don't want to efree() request_info.filename */ + STR_FREE(request_info.current_user); return SUCCESS; } #endif |
