Remove a dead increment

This commit is contained in:
Matthias Clasen 2009-09-07 03:12:06 -04:00
parent 0d1ffbf361
commit 30645bd0a5

View File

@ -323,7 +323,7 @@ hex_escape_string (const char *str,
*p++ = hex_digits[c & 0xf];
}
}
*p++ = 0;
*p = 0;
*free_return = TRUE;
return escaped_str;