projects
/
dana
/
cg-glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d1ffbf
)
Remove a dead increment
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 7 Sep 2009 07:12:06 +0000
(
03:12
-0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 7 Sep 2009 07:12:06 +0000
(
03:12
-0400)
gio/glocalfileinfo.c
patch
|
blob
|
history
diff --git
a/gio/glocalfileinfo.c
b/gio/glocalfileinfo.c
index a61cc5578df005f2963ce49b5ad039889eb1ed35..7076aac82ae248d7300d725e90db71ad2de36020 100644
(file)
--- 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;