зеркало из https://github.com/github/ruby.git
win32/registry.rb: terminator size
* ext/win32/lib/win32/registry.rb (API#SetValue): add terminator size, not 1 byte. [ruby-core:70365] [Bug #11439] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
cac0f9bedc
Коммит
51336edaae
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Aug 14 18:40:43 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/win32/lib/win32/registry.rb (API#SetValue): add terminator
|
||||||
|
size, not 1 byte. [ruby-core:70365] [Bug #11439]
|
||||||
|
|
||||||
Thu Aug 13 22:49:42 2015 Juanito Fatas <katehuang0320@gmail.com>
|
Thu Aug 13 22:49:42 2015 Juanito Fatas <katehuang0320@gmail.com>
|
||||||
|
|
||||||
* lib/timeout.rb (Timeout#timeout): freeze a string message to
|
* lib/timeout.rb (Timeout#timeout): freeze a string message to
|
||||||
|
|
|
@ -326,7 +326,7 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr
|
||||||
case type
|
case type
|
||||||
when REG_SZ, REG_EXPAND_SZ, REG_MULTI_SZ
|
when REG_SZ, REG_EXPAND_SZ, REG_MULTI_SZ
|
||||||
data = data.encode(WCHAR)
|
data = data.encode(WCHAR)
|
||||||
size ||= data.size + 1
|
size ||= data.size + WCHAR_SIZE
|
||||||
end
|
end
|
||||||
check RegSetValueExW.call(hkey, make_wstr(name), 0, type, data, size)
|
check RegSetValueExW.call(hkey, make_wstr(name), 0, type, data, size)
|
||||||
end
|
end
|
||||||
|
|
Загрузка…
Ссылка в новой задаче