diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-12 11:10:52 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-12 11:10:52 +0000 |
commit | 4a250fe1dd8de01746b5ffc4612d01adc619b2cd (patch) | |
tree | afdf2d10480f97106a2247b3be424068b6aacfc5 /Src | |
parent | 5de84477acd1abe1f192547ea22c46bcca9be63c (diff) | |
download | zsh-4a250fe1dd8de01746b5ffc4612d01adc619b2cd.tar.gz zsh-4a250fe1dd8de01746b5ffc4612d01adc619b2cd.tar.xz zsh-4a250fe1dd8de01746b5ffc4612d01adc619b2cd.zip |
missing initialisation for next field in assignments for substitutions for fc builtin (10692)
Diffstat (limited to 'Src')
-rw-r--r-- | Src/builtin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index 37a8af495..dfea94477 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -1224,6 +1224,7 @@ bin_fc(char *nam, char **argv, char *ops, int func) } a->name = *argv; a->value = s; + a->next = NULL; argv++; } /* interpret and check first history line specifier */ |