1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-22 01:12:01 +01:00

zsh-workers/8796

This commit is contained in:
Tanaka Akira 1999-11-29 09:14:24 +00:00
parent 23f3f128c7
commit 6e8cfbd006
2 changed files with 18 additions and 8 deletions

View file

@ -2189,6 +2189,8 @@ freearray(char **s)
{
char **t = s;
DPUTS(!s, "freearray() with zero argument");
while (*s)
zsfree(*s++);
free(t);