diff options
author | Roland McGrath <roland@redhat.com> | 1994-04-21 21:28:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-04-21 21:28:02 +0000 |
commit | b2522ec31937682d80a1ea11c94ab5daba6704bf (patch) | |
tree | cc80ae325d08ad7debc172031ef59b71d87ca1b0 /commands.c | |
parent | 117d4e0f367ebe2423ef7bbbacd3a1b53c76a936 (diff) | |
download | gunmake-b2522ec31937682d80a1ea11c94ab5daba6704bf.tar.gz |
(chop_commands): Fix braino in last change (failed to initialize IDX for
loop).
Diffstat (limited to 'commands.c')
-rw-r--r-- | commands.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -206,6 +206,7 @@ chop_commands (cmds) idx = strlen (cmds->commands) + 1; p = (char *) alloca (idx); bcopy (cmds->commands, p, idx); + idx = 0; while (*p != '\0') { char *end = find_char_unquote (p, '\n', 0); |