Text   |  XML   |  ReML   |   Visible Warnings:

Unreachable Computation  at ostream.c:85

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

o_stream_flush

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




Change Warning 7118.24394 : Unreachable Computation

Priority:
State:
Finding:
Owner:
Note: