fix MARKED decoding when string begins with $Cx

This commit is contained in:
Martin Michelsen
2024-09-24 21:45:46 -07:00
parent 9e8f7a1cc5
commit e50848b52e
+1 -1
View File
@@ -610,7 +610,7 @@ struct pstring {
if (this->data[1] == 'J') {
client_language = 0;
offset = 2;
} else {
} else if (this->data[1] != 'C') {
client_language = 1;
offset = 2;
}