Skip to content

Commit

Permalink
[HttpFoundation] workaround PHP bug in the session module
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Apr 18, 2020
1 parent 940167f commit eded33d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Session/Storage/Handler/AbstractSessionHandler.php
Expand Up @@ -71,6 +71,15 @@ public function validateId($sessionId)
$this->prefetchData = $this->read($sessionId);
$this->prefetchId = $sessionId;

if (\PHP_VERSION_ID < 70317 || (70400 <= \PHP_VERSION_ID && \PHP_VERSION_ID < 70405)) {
// work around https://bugs.php.net/79413
foreach (debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS) as $frame) {
if (!isset($frame['class']) && isset($frame['function']) && \in_array($frame['function'], ['session_regenerate_id', 'session_create_id'], true)) {
return '' === $this->prefetchData;
}
}
}

return '' !== $this->prefetchData;
}

Expand Down
1 change: 1 addition & 0 deletions Tests/Session/Storage/Handler/Fixtures/regenerate.expected
Expand Up @@ -11,6 +11,7 @@ validateId
read
doRead: abc|i:123;
read
doRead: abc|i:123;

write
doWrite: abc|i:123;
Expand Down

0 comments on commit eded33d

Please sign in to comment.