> 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);
Looks good to me. Thanks. Bruno