This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository terminology.
View the commit online.
commit e53fe0b62438f5334acd35b72047faf051583da8
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Aug 21 16:20:07 2023 +0200
utils: disable with msan due to false positives
---
src/bin/utils.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/bin/utils.c b/src/bin/utils.c
index bfaa305..1a38492 100644
--- a/src/bin/utils.c
+++ b/src/bin/utils.c
@@ -107,6 +107,14 @@ ty_eina_unicode_base64_decode(Eina_Unicode *unicode)
}
#if defined(BINARY_TYTEST)
+
+
+#if defined(__has_feature)
+# if __has_feature(memory_sanitizer)
+ __attribute__((no_sanitize("memory")))
+// disable with msan due to false positives
+# endif
+#endif
int tytest_base64(void)
{
Eina_Unicode *src;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.