]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib: istream-multiplex - remove dead assignment
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Fri, 6 Oct 2017 11:43:57 +0000 (14:43 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Fri, 6 Oct 2017 11:43:57 +0000 (14:43 +0300)
src/lib/istream-multiplex.c

index a52de43312f14e0bfaac9e642ee27b3556b9e781..6a5f0eabe55fb5d9e673654a68a810c3ea0a8696 100644 (file)
@@ -75,7 +75,7 @@ i_stream_multiplex_read(struct multiplex_istream *mstream, uint8_t cid)
                return -1;
        }
 
-       data = i_stream_get_data(mstream->parent, &len);
+       (void)i_stream_get_data(mstream->parent, &len);
 
        if (len == 0 && mstream->parent->closed) {
                req_channel->istream.istream.eof = TRUE;