From b6c007ac856be8756e2b6fb6f4403232a0e04618 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@25465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/dl/handle.c') diff --git a/ext/dl/handle.c b/ext/dl/handle.c index f5e7a33f7e..522d1a1dc6 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 v1.2.3