aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--common.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/common.cpp b/common.cpp
index bf47fabc..50b5e797 100644
--- a/common.cpp
+++ b/common.cpp
@@ -1554,9 +1554,12 @@ wchar_t *unescape( const wchar_t * orig, int flags )
return 0;
}
else
- out_pos--;
+ {
+ //We may ever escape a NULL character, but still appending a \ in case I am wrong.
+ in[out_pos] = L'\\';
+ }
}
-
+ break;
default:
{
in[out_pos++] = L'\\';
@@ -1610,9 +1613,12 @@ wchar_t *unescape( const wchar_t * orig, int flags )
return 0;
}
else
- out_pos--;
+ {
+ //We probably don't need it since NULL character is always appended before ending this function.
+ in[out_pos]=in[in_pos];
+ }
}
-
+ break;
case '\\':
case L'$':
case '"':