mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- fixed: strbin did not check for a terminating 0-character right after an escaping backslash.
This commit is contained in:
parent
04329981ec
commit
423fe60080
1 changed files with 2 additions and 2 deletions
|
@ -590,7 +590,7 @@ int strbin (char *str)
|
|||
while ( (c = *p++) ) {
|
||||
if (c != '\\') {
|
||||
*str++ = c;
|
||||
} else {
|
||||
} else if (*p != 0) {
|
||||
switch (*p) {
|
||||
case 'a':
|
||||
*str++ = '\a';
|
||||
|
@ -693,7 +693,7 @@ FString strbin1 (const char *start)
|
|||
while ( (c = *p++) ) {
|
||||
if (c != '\\') {
|
||||
result << c;
|
||||
} else {
|
||||
} else if (*p) {
|
||||
switch (*p) {
|
||||
case 'a':
|
||||
result << '\a';
|
||||
|
|
Loading…
Reference in a new issue