Fix string_unprinting()
authorJeremy Harris <jgh146exb@wizmail.org>
Sun, 23 Mar 2014 22:53:06 +0000 (22:53 +0000)
committerJeremy Harris <jgh146exb@wizmail.org>
Sun, 23 Mar 2014 22:53:06 +0000 (22:53 +0000)
src/src/string.c

index 94d61b1a35e320b3ee9e09f0d9fd9a09a16e1bf0..6f54cc6244d03862dc069c321e68faa7d59e86cf 100644 (file)
@@ -374,7 +374,8 @@ while (*p)
   {
   if (*p == '\\')
     {
-    *q = string_interpret_escape(&p);
+    *q++ = string_interpret_escape(&p);
+    p++;
     }
   else
     {