diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/rlib.c | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,9 @@ +Version 2.3.3 + - Add --enable-debug compile mode + - Fix endless loop on 0 length files + Version 2.3.2e - Use <stdlib.h> instead of <malloc.h> - - Add --enable-debug compile mode Version 2.3.1b - Use reallocf instead of realloc @@ -134,7 +134,7 @@ int rlibRun(r_stream* stream, r_script* script, int done) /* Need some data to work with */ if(!stream->nextIn || !stream->availIn) - RETURN(R_IN); + RETURN(done ? R_DONE : R_IN); stream->total = 0; |