summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-04-10 12:29:14 +0400
committerDmitry Stogov <dmitry@zend.com>2014-04-10 12:29:14 +0400
commit6df6006769733e6ec925d3ca59f40ec78251cf6f (patch)
tree49027b18772823f1973cbda5bfe0eb640e18ff6c
parent23aecd1736c4457418a7eabdfedc2dee690c4346 (diff)
downloadphp-git-6df6006769733e6ec925d3ca59f40ec78251cf6f.tar.gz
Compatibility fix for ext/session/tests/session_id_error3.phpt
-rw-r--r--ext/session/session.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index acb17cebec..31be69197a 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -1909,15 +1909,22 @@ static PHP_FUNCTION(session_save_path)
Return the current session id. If newid is given, the session id is replaced with newid */
static PHP_FUNCTION(session_id)
{
- char *name = NULL;
+ zend_string *name = NULL;
int name_len, argc = ZEND_NUM_ARGS();
- if (zend_parse_parameters(argc TSRMLS_CC, "|s", &name, &name_len) == FAILURE) {
+ if (zend_parse_parameters(argc TSRMLS_CC, "|S", &name) == FAILURE) {
return;
}
if (PS(id)) {
- RETVAL_STR(STR_COPY(PS(id)));
+ //??? keep compatibility for "\0" characters
+ //??? see: ext/session/tests/session_id_error3.phpt
+ int len = strlen(PS(id)->val);
+ if (UNEXPECTED(len != PS(id)->len)) {
+ RETVAL_STR(STR_INIT(PS(id)->val, len, 0));
+ } else {
+ RETVAL_STR(STR_COPY(PS(id)));
+ }
} else {
RETVAL_EMPTY_STRING();
}
@@ -1926,7 +1933,7 @@ static PHP_FUNCTION(session_id)
if (PS(id)) {
STR_RELEASE(PS(id));
}
- PS(id) = STR_INIT(name, name_len, 0);
+ PS(id) = STR_COPY(name);
}
}
/* }}} */