* bignum.c (bary_mul1): No need to invoke MEMZERO at last.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-07-09 13:19:59 +00:00
parent 52ecaae8a2
commit 0c620c2ec3
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Jul 9 22:17:58 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (bary_mul1): No need to invoke MEMZERO at last.
Tue Jul 9 21:40:01 2013 Kouhei Sutou <kou@cozmixng.org>
* test/rexml/test_text.rb: Add missing tests for Text#<<.

View File

@ -1800,7 +1800,6 @@ bary_mul1(BDIGIT *zds, size_t zl, BDIGIT *xds, size_t xl, BDIGIT *yds, size_t yl
bary_mul_normal(zds, zl, xds, xl, yds, yl);
rb_thread_check_ints();
}
MEMZERO(zds + l, BDIGIT, zl - l);
}
/* determine whether a bignum is sparse or not by random sampling */