* lib/explicit_bzero.c (explicit_bzero): Use '\0' instead of 0.
+2020-04-13 Bastien Roucariès <rouca@debian.org>
+
+ explicit_bzero: Improve code style.
+ * lib/explicit_bzero.c (explicit_bzero): Use '\0' instead of 0.
+
2020-04-13 Bastien Roucariès <rouca@debian.org>
explicit_bzero: On native Windows, use SecureZeroMemory().
#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);
#else