bigsaycrashfix

This commit is contained in:
joonicks
2018-03-27 17:28:48 +02:00
parent d7121a6b1f
commit 7c5611931b
8 changed files with 99 additions and 61 deletions

View File

@@ -176,7 +176,7 @@ Strp *make_strp(Strp **pp, const char *string)
Strp *append_strp(Strp **pp, const char *string)
{
while((*pp)->next != NULL)
while((*pp) != NULL)
pp = &((*pp)->next);
make_strp(pp,string);
return(*pp);