Commit 965aa4c7 authored by thek@kpdesk.mysql.com's avatar thek@kpdesk.mysql.com

Merge kpettersson@bk-internal:/home/bk/mysql-5.0-maint

into  kpdesk.mysql.com:/home/thek/dev/mysql-5.0-maint
parents d9ad0cd0 f7688d5f
...@@ -343,7 +343,11 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type, ...@@ -343,7 +343,11 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
if (info->type == READ_CACHE) if (info->type == READ_CACHE)
{ {
info->write_end=info->write_buffer+info->buffer_length; 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; info->end_of_file = ~(my_off_t) 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment