1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Restore MY_WME flag for my_pread in read_ddl_log_entry, fix errors in buildbot

This commit is contained in:
Vladislav Vaintroub
2016-11-14 08:02:35 +01:00
parent 96b62b5514
commit adc38ed811

View File

@@ -685,7 +685,7 @@ static bool read_ddl_log_file_entry(uchar *file_entry_buf,
DBUG_ASSERT(io_size >= size);
if (mysql_file_pread(file_id, file_entry_buf, size, ((my_off_t)io_size) * entry_no,
MYF(MY_FNABP)) != size)
MYF(MY_WME)) != size)
error= TRUE;
DBUG_RETURN(error);
}