Commit 0038c866078a409b40d4d194f597768284d7ff32

Pierre Le Marre 2023-09-26T17:05:14

Prevent overflow of octal escape sequences The octal parser accepts the range `\1..\777`. The result is cast to `char` which will silently overflow. This commit prevents overlow and will treat `\400..\777` as invalid escape sequences.