This commit is contained in:
Blair Bonnett 2012-09-17 04:36:57 -07:00
commit 7689bee6aa

View File

@ -76,6 +76,12 @@ static int msg_check_escapes(const char* string, size_t len)
case '\\': case '\\':
case 'n': case 'n':
case 's': case 's':
/* Increment so we don't check the escaped
* character next time around. Not doing so
* leads to messages with escaped backslashes
* being incorrectly reported as having invalid
* escapes. */
++start;
break; break;
default: default:
return 0; return 0;