bug-gnulib
[Top][All Lists]
Advanced

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

[PATCH 5/5] Fix styling in explicit bzero


From: roucaries . bastien
Subject: [PATCH 5/5] Fix styling in explicit bzero
Date: Sat, 11 Apr 2020 23:20:35 +0200

From: Bastien Roucariès <address@hidden>

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 59215852c..21f42292d 100644
--- a/lib/explicit_bzero.c
+++ b/lib/explicit_bzero.c
@@ -53,7 +53,7 @@ void
 explicit_bzero (void *s, size_t len)
 {
 #ifdef 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 HAVE_SECUREZEROMEMORY
-- 
2.25.1




reply via email to

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