diff options
Diffstat (limited to 'camel/camel-stream-mem.c')
-rw-r--r-- | camel/camel-stream-mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-stream-mem.c b/camel/camel-stream-mem.c index 2d5c84a113..722b49f3f8 100644 --- a/camel/camel-stream-mem.c +++ b/camel/camel-stream-mem.c @@ -233,9 +233,9 @@ stream_seek (CamelSeekableStream *stream, off_t offset, break; } - if (stream->bound_end == CAMEL_STREAM_UNBOUND) + if (stream->bound_end != CAMEL_STREAM_UNBOUND) position = MIN (position, stream->bound_end); - if (stream->bound_start == CAMEL_STREAM_UNBOUND) + if (stream->bound_start != CAMEL_STREAM_UNBOUND) position = MAX (position, 0); else position = MAX (position, stream->bound_start); |