1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-02 21:36:05 +02:00

missing initialisation for next field in assignments for substitutions for fc builtin (10692)

This commit is contained in:
Sven Wischnowsky 2000-04-12 11:10:52 +00:00
parent 5de84477ac
commit 4a250fe1dd
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2000-04-12 Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
* 10692: Src/builtin.c: missing initialisation for next field in
assignments for substitutions for fc builtin
* 10691: Completion/Core/_main_complete, Completion/Core/_oldlist:
keep _oldlist from using the dummy match inserted for warnings

View File

@ -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 */