diff options
author | Ben Mansell <joosters@php.net> | 2000-09-19 17:34:53 +0000 |
---|---|---|
committer | Ben Mansell <joosters@php.net> | 2000-09-19 17:34:53 +0000 |
commit | 4208c264d7755aa540853811d88b71790aeee5cb (patch) | |
tree | c2cd94806b151dce913066131e39fd5619bbc4f6 /sapi/isapi/php4isapi.c | |
parent | 4b3fb7b05ecdb583f26bec1fb2f994e57dc5f5a3 (diff) | |
download | php-git-4208c264d7755aa540853811d88b71790aeee5cb.tar.gz |
Fixed bug which could truncate PHP_SELF
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 61450d0d24..e5c96b8f12 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -330,6 +330,7 @@ static void sapi_isapi_register_server_variables(zval *track_vars_array ELS_DC S } /* PHP_SELF support */ + variable_len = ISAPI_SERVER_VAR_BUF_SIZE; #ifdef WITH_ZEUS if (lpECB->GetServerVariable(lpECB->ConnID, "PATH_INFO", static_variable_buf, &variable_len) #else |