bug-gnulib
[Top][All Lists]
Advanced

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

[PATCH 5/6] Improve styling in explicit_bzero


From: roucaries . bastien
Subject: [PATCH 5/6] Improve styling in explicit_bzero
Date: Sun, 12 Apr 2020 02:48:26 +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 055559907..7eff7f2a7 100644
--- a/lib/explicit_bzero.c
+++ b/lib/explicit_bzero.c
@@ -57,7 +57,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]