diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/io/src/xfrm/ostream.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/io/src/xfrm/ostream.c b/lib/io/src/xfrm/ostream.c index c035f2a..2b42084 100644 --- a/lib/io/src/xfrm/ostream.c +++ b/lib/io/src/xfrm/ostream.c @@ -51,13 +51,6 @@ static int flush_inbuf(ostream_xfrm_t *xfrm, bool finish) break; } - if (off_out > 0) { - ret = xfrm->wrapped->append(xfrm->wrapped, - xfrm->outbuf, off_out); - if (ret) - return ret; - } - if (off_in < avail_in) { memmove(xfrm->inbuf, xfrm->inbuf + off_in, avail_in - off_in); xfrm->inbuf_used -= off_in; |