git://git.exim.org
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d978412
)
Fix string_unprinting()
author
Jeremy Harris
<jgh146exb@wizmail.org>
Sun, 23 Mar 2014 22:53:06 +0000
(22:53 +0000)
committer
Jeremy Harris
<jgh146exb@wizmail.org>
Sun, 23 Mar 2014 22:53:06 +0000
(22:53 +0000)
src/src/string.c
patch
|
blob
|
history
diff --git
a/src/src/string.c
b/src/src/string.c
index 94d61b1a35e320b3ee9e09f0d9fd9a09a16e1bf0..6f54cc6244d03862dc069c321e68faa7d59e86cf 100644
(file)
--- a/
src/src/string.c
+++ b/
src/src/string.c
@@
-374,7
+374,8
@@
while (*p)
{
if (*p == '\\')
{
- *q = string_interpret_escape(&p);
+ *q++ = string_interpret_escape(&p);
+ p++;
}
else
{