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 --- ext/dl/handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') 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