Unreachable Computation at ostream.c:117 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
o_stream_seek (/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/ostream.c)![]() | ||||||
![]() | ||||||
107 | int o_stream_seek(struct ostream *stream, uoff_t offset) | |||||
108 | { | |||||
109 | struct ostream_private *_stream = stream->real_stream; | |||||
110 | ||||||
111 | if (unlikely(stream->closed)) | |||||
112 | return -1; | |||||
113 | ||||||
114 | stream->stream_errno = 0; | |||||
115 | if (unlikely(_stream->seek(_stream, offset) < 0)) { | |||||
116 | i_assert(stream->stream_errno != 0); | |||||
117 | stream->last_failed_errno = stream->stream_errno;
| |||||
118 | } | |||||
119 | return 1; | |||||
120 | } | |||||
![]() |