Skip to content

Commit b2fbf6e

Browse files
Merge branch '4.3' into 4.4
* 4.3: cs fix Fix inconsistent return points. [Config] Add handling for ignored keys in ArrayNode::mergeValues. Fix inconsistent return points. [Security/Core] UserInterface::getPassword() can return null [Router] Fix TraceableUrlMatcher behaviour with trailing slash Revert "bug #33092 [DependencyInjection] Improve an exception message (fabpot)"
2 parents c173f50 + c6e5e2a commit b2fbf6e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Parser/Tokenizer/TokenizerEscaping.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ private function replaceUnicodeSequences(string $value): string
5858
if (0x10000 > $c) {
5959
return \chr(0xE0 | $c >> 12).\chr(0x80 | $c >> 6 & 0x3F).\chr(0x80 | $c & 0x3F);
6060
}
61+
62+
return '';
6163
}, $value);
6264
}
6365
}

0 commit comments

Comments
 (0)