diff --git a/mysys/mf_iocache.c b/mysys/mf_iocache.c index d458bf528d0..f8b4434a936 100644 --- a/mysys/mf_iocache.c +++ b/mysys/mf_iocache.c @@ -342,7 +342,11 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type, if (info->type == READ_CACHE) { info->write_end=info->write_buffer+info->buffer_length; - info->seek_not_done=1; + /* + Trigger a new seek only if we have a valid + file handle. + */ + info->seek_not_done= (info->file >= 0); } info->end_of_file = ~(my_off_t) 0; }