appending zero bytes to an empty array failed it

This commit is contained in:
leitner 2003-12-05 17:30:03 +00:00
parent 884e0b09b8
commit 6fdd2a9078
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
add support for Solaris /dev/poll
add lose32 support (broken, please don't use!)
head -1 -> head -n 1
apending 0 bytes to an empty array would fail it
0.16:
add buffer_fromsa (make buffer from stralloc)

View File

@ -3,6 +3,7 @@
void array_catb(array* to,const char* from,uint64 len) {
long l;
if (!len) return;
if (to->allocated<0) return;
if (to->initialized+len<to->initialized) {
fail: