Commit bea6c097 bea6c0971e862ec61a9b0560545dfe49c11282c3 by Alain Magloire

A little bug fix in stream.c

1 parent 18779916
......@@ -405,7 +405,8 @@ stream_write (stream_t os, const char *buf, size_t count,
}
if (pnwrite)
*pnwrite = total;
return err;
/* If we have someting in the buffer propagate the error on the next call. */
return (total) ? 0 : err;
}
int
......