Commit f6544353 authored by Marko Mäkelä's avatar Marko Mäkelä

Pull request #625: ASAN unpoison system versioning related buffer

parents cd63f43c d4822bef
......@@ -3221,8 +3221,8 @@ enum open_frm_error open_table_from_share(THD *thd, TABLE_SHARE *share,
if (++i < records)
record+= share->rec_buff_length;
}
MEM_UNDEFINED(outparam->record[0], share->reclength);
MEM_UNDEFINED(outparam->record[1], share->reclength);
for (i= 0; i < records; i++)
MEM_UNDEFINED(outparam->record[i], share->reclength);
if (!(field_ptr = (Field **) alloc_root(&outparam->mem_root,
(uint) ((share->fields+1)*
......
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