blob: 45b5419025c1cf08cabd21820d4bf29738e9d2a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/opensea-common/src/common.c b/opensea-common/src/common.c
index b382532..eed9426 100644
--- a/opensea-common/src/common.c
+++ b/opensea-common/src/common.c
@@ -1899,7 +1899,7 @@ void* explicit_zeroes(void* dest, size_t count)
{
if (dest && count > 0)
{
-#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 202311L /*C23*/) || defined (HAVE_MEMSET_EXPLICIT)
+#if 0 && ((defined (__STDC_VERSION__) && __STDC_VERSION__ >= 202311L /*C23*/) || defined (HAVE_MEMSET_EXPLICIT))
return memset_explicit(dest, 0, count);
#elif defined (__STDC_LIB_EXT1__) || defined (HAVE_MEMSET_S)
//use memset_s since it cannot be optimized out
|