mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-15 03:27:49 +01:00
gdbstub: fix threads with invalid characters for packets (closes #1904)
This commit is contained in:
parent
efa4a346af
commit
6514e365ad
@ -2368,6 +2368,9 @@ namespace ams::dmnt {
|
||||
*(cur++) = 'g';
|
||||
*(cur++) = 't';
|
||||
*(cur++) = ';';
|
||||
} else if (name[i] == '*' || name[i] == '#' || name[i] == '$' || name[i] == '}') {
|
||||
*(cur++) = '}';
|
||||
*(cur++) = name[i] ^ 0x20;
|
||||
} else {
|
||||
*(cur++) = name[i];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user