pull/1/head
Nicholas Marriott 2009-05-04 19:12:37 +00:00
parent 525bd431b2
commit b21e356e56
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: cmd-string.c,v 1.13 2009-02-16 19:29:17 nicm Exp $ */
/* $Id: cmd-string.c,v 1.14 2009-05-04 19:12:37 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@ -274,7 +274,7 @@ cmd_string_variable(const char *s, size_t *p)
buf = xrealloc(buf, 1, len + 1);
buf[len++] = ch;
for(;;) {
for (;;) {
ch = cmd_string_getc(s, p);
if (ch == EOF || !cmd_string_other(ch))
break;