ActionsLike0
Bug #7744
closedFix signed integer overflows Github #242
Description
=begin
From ((<github issue 242|URL:https://github.com/ruby/ruby/pull/242>)):
((Signed integer overflow is undefined behavior in C. Many compilers assume no signed integer overflows and even optimize away overflow checks. The -fno-strict-overflow flag works around this issue in gcc, but doesn't fix the fundamentally broken code.))
((This patchset fixes signed integer overflows in time.c, ossl.c, and bigdecimal.c.))
I've attached the associated patch.
=end
Files
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r44395.
Zachary, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
ossl.c: integer overflow
- ext/openssl/ossl.c (string2hex): fix signed integer overflow.
[ruby-core:51711] [Bug #7744] [Fixes GH-242]
ActionsLike0