summaryrefslogtreecommitdiff
path: root/quote.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-12-21 13:51:51 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2005-12-21 13:51:51 -0800
commit8d712aafd2df3c1f5147a28947f98cefe667cf76 (patch)
tree66844d5d813bed6ce4f83e461d871defb658125c /quote.c
parentGIT 1.0.0a (diff)
parentserver-info: skip empty lines. (diff)
downloadtgif-8d712aafd2df3c1f5147a28947f98cefe667cf76.tar.xz
GIT 1.0.0b
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'quote.c')
-rw-r--r--quote.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/quote.c b/quote.c
index 76eb144265..7218a7080d 100644
--- a/quote.c
+++ b/quote.c
@@ -126,8 +126,10 @@ static int quote_c_style_counted(const char *name, int namelen,
if (!no_dq)
EMIT('"');
- for (sp = name; (ch = *sp++) && (sp - name) <= namelen; ) {
-
+ for (sp = name; sp < name + namelen; sp++) {
+ ch = *sp;
+ if (!ch)
+ break;
if ((ch < ' ') || (ch == '"') || (ch == '\\') ||
(ch == 0177)) {
needquote = 1;