X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/d9784128d573baed950d9b0c6aef1c864c33b4b4..823ad74fc28c27c9b673fcb137c84475ef9dab3f:/src/src/string.c diff --git a/src/src/string.c b/src/src/string.c index 94d61b1a3..6f54cc624 100644 --- 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 {