Unreachable Computation at ostream.c:85 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
o_stream_flush (/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/ostream.c)![]() | ||||||
![]() | ||||||
74 | int o_stream_flush(struct ostream *stream) | |||||
75 | { | |||||
76 | struct ostream_private *_stream = stream->real_stream; | |||||
77 | int ret; | |||||
78 | ||||||
79 | if (unlikely(stream->closed)) | |||||
80 | return -1; | |||||
81 | ||||||
82 | stream->stream_errno = 0; | |||||
83 | if (unlikely((ret = _stream->flush(_stream)) < 0)) { | |||||
84 | i_assert(stream->stream_errno != 0); | |||||
85 | stream->last_failed_errno = stream->stream_errno;
| |||||
86 | } | |||||
87 | return ret; | |||||
88 | } | |||||
![]() |