more alloca fixes

This commit is contained in:
leitner
2004-01-06 23:35:06 +00:00
parent 60d00ede11
commit f52aa87441
15 changed files with 23 additions and 14 deletions

View File

@@ -6,5 +6,5 @@ void array_cat(array* to,const array* const from) {
array_fail(to);
return;
}
return array_catb(to,from->p,from->initialized);
array_catb(to,from->p,from->initialized);
}