bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 6/6] Improve styling in explicit_bzero


From: roucaries . bastien
Subject: [PATCH 6/6] Improve styling in explicit_bzero
Date: Mon, 13 Apr 2020 01:09:18 +0200

From: Bastien Roucariès <address@hidden>

Use '\0' instead of 0

Signed-off-by: Bastien Roucariès <address@hidden>
---
 lib/explicit_bzero.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/explicit_bzero.c b/lib/explicit_bzero.c
index 03968acbf..072c59498 100644
--- a/lib/explicit_bzero.c
+++ b/lib/explicit_bzero.c
@@ -51,7 +51,7 @@ explicit_bzero (void *s, size_t len)
 #if defined _WIN32 && !defined __CYGWIN__
   (void) SecureZeroMemory (s, len);
 #elif HAVE_EXPLICIT_MEMSET
-  explicit_memset (s, 0, len);
+  explicit_memset (s, '\0', len);
 #elif HAVE_MEMSET_S
   (void) memset_s (s, len, '\0', len);
 #elif defined __GNUC__
-- 
2.25.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]