From fd8f7848b4d7a0280cb538745c89811df4022198 Mon Sep 17 00:00:00 2001 From: normal Date: Tue, 1 Dec 2015 22:42:00 +0000 Subject: missing/explicit_bzero.c (explicit_bzero): fixup r52839 ...for compilers with "weak" attribute. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- missing/explicit_bzero.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'missing/explicit_bzero.c') diff --git a/missing/explicit_bzero.c b/missing/explicit_bzero.c index 061e72f800..baa4624d13 100644 --- a/missing/explicit_bzero.c +++ b/missing/explicit_bzero.c @@ -49,7 +49,7 @@ ruby_explicit_bzero_hook_unused(void *buf, size_t len) void explicit_bzero(void *b, size_t len) { - memset(b, len); + memset(b, 0, len); ruby_explicit_bzero_hook_unused(b, len); } -- cgit v1.2.1