From: Timo Sirainen Date: Wed, 13 Jan 2021 10:54:09 +0000 (+0200) Subject: imap: test-imap-client-hibernate - Remove dead assignment X-Git-Tag: 2.3.14.rc1~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbcd7610b5ebfb7c4865b3dd7830742eb666e5df;p=thirdparty%2Fdovecot%2Fcore.git imap: test-imap-client-hibernate - Remove dead assignment --- diff --git a/src/imap/test-imap-client-hibernate.c b/src/imap/test-imap-client-hibernate.c index e767a1f69d..6136019a84 100644 --- a/src/imap/test-imap-client-hibernate.c +++ b/src/imap/test-imap-client-hibernate.c @@ -80,7 +80,7 @@ static int imap_hibernate_server(struct test_imap_client_hibernate *ctx) if (ctx->has_mailbox) { /* read mailbox notify fd */ i_stream_unix_set_read_fd(input); - if ((line = i_stream_read_next_line(input)) == NULL) + if (i_stream_read_next_line(input) == NULL) i_fatal("read(imap-hibernate notify fd) failed: %s", i_stream_get_error(input));