mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Disallow Unicode conversion specifications.
This stops fish from accessing the `bool ok[UCHAR_MAX + 1]` table beyond allocated space potentially accessing memory that doesn't belong to fish, and crashing.
This commit is contained in:
parent
1eb09f3eb2
commit
e0b78f7f2a
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ no_more_flag_characters:
|
||||||
|
|
||||||
{
|
{
|
||||||
wchar_t conversion = *f;
|
wchar_t conversion = *f;
|
||||||
if (! ok[conversion])
|
if (conversion > 0xFF || ! ok[conversion])
|
||||||
{
|
{
|
||||||
this->fatal_error(_(L"%.*ls: invalid conversion specification"), (int)(f + 1 - direc_start), direc_start);
|
this->fatal_error(_(L"%.*ls: invalid conversion specification"), (int)(f + 1 - direc_start), direc_start);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue