fix ArgumentError in everything that closes a process handle

git-svn-id: file:///home/svn/framework3/trunk@10776 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2010-10-21 17:10:46 +00:00
parent 27d2761ec0
commit 2dbf731946
2 changed files with 3 additions and 3 deletions

View File

@ -320,7 +320,7 @@ class Process < Rex::Post::Process
#
# Instance method
#
def close(handle)
def close(handle=self.handle)
self.class.close(self.client, handle)
end

View File

@ -167,7 +167,7 @@ class Thread < Rex::Post::Thread
end
# Instance method
def self.close
def close
self.class.close(self.process.client, self.handle)
end