Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Computation  at ostream.c:117

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

o_stream_seek

(/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib/ostream.c)expand/collapse
Show more  
 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  }
Show more  




Change Warning 7119.24395 : Unreachable Computation

Priority:
State:
Finding:
Owner:
Note: