summaryrefslogtreecommitdiff
path: root/quote.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-21 21:51:51 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-21 21:51:51 (GMT)
commit8d712aafd2df3c1f5147a28947f98cefe667cf76 (patch)
tree66844d5d813bed6ce4f83e461d871defb658125c /quote.c
parente4e79a217576d24ef4d73b620766f62b155bcd98 (diff)
parent8ac4838af428a2a32498b3e8d13295eb714654b4 (diff)
downloadgit-8d712aafd2df3c1f5147a28947f98cefe667cf76.zip
git-8d712aafd2df3c1f5147a28947f98cefe667cf76.tar.gz
git-8d712aafd2df3c1f5147a28947f98cefe667cf76.tar.bz2
GIT 1.0.0bv1.0.2v1.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 76eb144..7218a70 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;