mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
win32.c: fix infinite recursion
* win32/win32.c (rb_w32_pow): undef pow to get rid of infinite recursive call. re-fix [Bug #8495]. [ruby-core:55923] [Bug #8621] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4997572f7e
commit
3c9e6f1e62
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Jul 11 21:30:17 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (rb_w32_pow): undef pow to get rid of infinite
|
||||
recursive call. re-fix [Bug #8495]. [ruby-core:55923] [Bug #8621]
|
||||
|
||||
Thu Jul 11 20:18:13 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/dl/win32/lib/win32/registry.rb (Win32::Registry::API#make_wstr):
|
||||
|
|
|
@ -6969,6 +6969,7 @@ rb_w32_unwrap_io_handle(int fd)
|
|||
double
|
||||
rb_w32_pow(double x, double y)
|
||||
{
|
||||
#undef pow
|
||||
double r;
|
||||
unsigned int default_control = _controlfp(0, 0);
|
||||
_controlfp(_PC_64, _MCW_PC);
|
||||
|
|
Loading…
Reference in a new issue