From f88be143445890c8dece4e5f9c527e09ed8b9844 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 25 Oct 2009 01:19:11 +0000 Subject: * ext/dl/handle.c (rb_dlhandle_close): fixed an invalid local variable declaration. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/dl/handle.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fce515665..d3ecfbc9e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Oct 25 10:19:09 2009 Nobuyoshi Nakada + + * ext/dl/handle.c (rb_dlhandle_close): fixed an invalid local + variable declaration. + Sun Oct 25 05:44:34 2009 Marc-Andre Lafortune * lib/matrix.rb (**): Optimization (up to 45% faster) diff --git a/ext/dl/handle.c b/ext/dl/handle.c index f5e7a33f7..522d1a1dc 100644 --- a/ext/dl/handle.c +++ b/ext/dl/handle.c @@ -64,8 +64,8 @@ rb_dlhandle_close(VALUE self) TypedData_Get_Struct(self, struct dl_handle, &dlhandle_data_type, dlhandle); if(dlhandle->open) { - dlhandle->open = 0; int ret = dlclose(dlhandle->ptr); + dlhandle->open = 0; /* Check dlclose for successful return value */ if(ret) { -- cgit