diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-21 13:51:51 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-21 13:51:51 -0800 |
commit | 8d712aafd2df3c1f5147a28947f98cefe667cf76 (patch) | |
tree | 66844d5d813bed6ce4f83e461d871defb658125c /quote.c | |
parent | GIT 1.0.0a (diff) | |
parent | server-info: skip empty lines. (diff) | |
download | tgif-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.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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; |