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 4df193b833adad55cf9d2e1e8b2bfc75afda78f1
Author: Boris Faure <bill...@gmail.com>
AuthorDate: Mon Aug 21 16:35:26 2023 +0200
utils: better guard with msan
---
src/bin/utils.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/bin/utils.c b/src/bin/utils.c
index 1a38492..2884207 100644
--- a/src/bin/utils.c
+++ b/src/bin/utils.c
@@ -109,18 +109,18 @@ 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;
char *res;
const char *expected;
+#if defined(__has_feature)
+# if __has_feature(memory_sanitizer)
+// disable with msan due to false positives
+ return 0;
+# endif
+#endif
const char *terminology_rox = "VGVybWlub2xvZ3kgcm94IQ==";
src = "" NULL);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.