We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c4c08 commit f2ffcd9Copy full SHA for f2ffcd9
extra/mariabackup/fil_cur.cc
@@ -187,6 +187,7 @@ xb_fil_cur_open(
187
}
188
#else
189
err = fstat(cursor->file.m_file, &cursor->statinfo);
190
+ MSAN_STAT_WORKAROUND(&cursor->statinfo);
191
#endif
192
if (max_file_size < (ulonglong)cursor->statinfo.st_size) {
193
cursor->statinfo.st_size = (ulonglong)max_file_size;
extra/mariabackup/xtrabackup.cc
@@ -3648,6 +3648,7 @@ os_file_readdir_next_file(
3648
return(-1);
3649
3650
3651
+ MSAN_STAT_WORKAROUND(&statinfo);
3652
info->size = statinfo.st_size;
3653
3654
if (S_ISDIR(statinfo.st_mode)) {
0 commit comments