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 --- ChangeLog | 5 +++++ missing/explicit_bzero.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 86860d7192..1c55950924 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Dec 2 07:41:08 2015 Eric Wong + + * missing/explicit_bzero.c (explicit_bzero): fixup r52839 + for compilers with "weak" attribute + Wed Dec 2 06:47:25 2015 KOSAKI Motohiro * missing/explicit_bzero.c: add ruby_explicit_bzero_hook_unused 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.3