diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-21 14:00:47 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-21 14:00:47 -0800 |
commit | 2a212746f44f18695d33931039da10f842de7b25 (patch) | |
tree | 73e3445f380222ecb9d86290ec1118671a866c28 /quote.c | |
parent | Post 1.0.0 development track. (diff) | |
parent | server-info: skip empty lines. (diff) | |
download | tgif-2a212746f44f18695d33931039da10f842de7b25.tar.xz |
Merge branch 'fixes'
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; |