1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 20:53:00 +02:00

Fix uninitialized read in rfc1867 handler reported by valgrind. Only in PHP 5.6.

This commit fixes initialized read, but calling php_session_initialize() directly
is problematic because configuration could be invalid. Invalid config may result
in segfault. This will be addressed later.
This commit is contained in:
Yasuo Ohgaki
2016-01-15 14:53:31 +09:00
parent 8c37a086c7
commit 31ae802736

View File

@@ -96,6 +96,7 @@ static inline void php_rinit_session_globals(TSRMLS_D) /* {{{ */
PS(session_status) = php_session_none;
PS(mod_data) = NULL;
PS(mod_user_is_open) = 0;
PS(defined_sid) = 1;
/* Do NOT init PS(mod_user_names) here! */
PS(http_session_vars) = NULL;
}