From a3bd9a86e8ae56c021e6dd334fa640b53935725c Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 20 Apr 2010 12:34:57 +0000 Subject: [PATCH] * ext/dl/win32/lib/win32/registry.rb (PredefinedKey#create): root key name should be a string. fixed [ruby-core:28192] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/dl/win32/lib/win32/registry.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c3e81bda77..d2d72061d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 20 21:33:06 2010 NAKAMURA Usaku + + * ext/dl/win32/lib/win32/registry.rb (PredefinedKey#create): root key + name should be a string. fixed [ruby-core:28192] + Tue Apr 20 19:25:50 2010 Nobuyoshi Nakada * parse.y (parser_yylex): fix for tLPAREN_ARG. diff --git a/ext/dl/win32/lib/win32/registry.rb b/ext/dl/win32/lib/win32/registry.rb index 5742d0f376..7b5a469c40 100644 --- a/ext/dl/win32/lib/win32/registry.rb +++ b/ext/dl/win32/lib/win32/registry.rb @@ -198,7 +198,7 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr # Make all Constants.constants.grep(/^HKEY_/) do |c| - Registry.const_set c, new(Constants.const_get(c), c) + Registry.const_set c, new(Constants.const_get(c), c.to_s) end end