Merge pull request #22124 from vrabaud:3.4_sanitizer

This commit is contained in:
Alexander Alekhin 2022-06-19 10:51:36 +00:00
commit 711b136191

View File

@ -67,7 +67,7 @@
#if defined(__clang__) && defined(__has_feature)
#if __has_feature(memory_sanitizer)
#define CV_ANNOTATE_MEMORY_IS_INITIALIZED(address, size) \
__msan_unpoison(adresse, size)
__msan_unpoison(address, size)
#endif
#endif
#ifndef CV_ANNOTATE_MEMORY_IS_INITIALIZED