From 30645bd0a584137585d572b37f39d2904bba0a8f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 7 Sep 2009 03:12:06 -0400 Subject: [PATCH] Remove a dead increment --- gio/glocalfileinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index a61cc5578..7076aac82 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -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;