1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/tcltklib.c (lib_eventloop_ensure): refer freed pointer

[ruby-core:07744] and memory leak.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2006-04-21 06:22:43 +00:00
parent 55cc0dd148
commit 09cc0b160e
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Fri Apr 21 15:19:13 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/tcltklib.c (lib_eventloop_ensure): refer freed pointer
[ruby-core:07744] and memory leak.
Tue Apr 18 17:40:37 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/multi-tk.rb: add a binding to a container for a slave IP.

View file

@ -4,7 +4,7 @@
* Oct. 24, 1997 Y. Matsumoto
*/
#define TCLTKLIB_RELEASE_DATE "2006-04-18"
#define TCLTKLIB_RELEASE_DATE "2006-04-21"
#include "ruby.h"
#include "rubysig.h"
@ -1696,6 +1696,8 @@ lib_eventloop_ensure(args)
rb_thread_critical = ptr->thr_crit_bup;
free(ptr);
return Qnil;
}
@ -1724,10 +1726,10 @@ lib_eventloop_ensure(args)
}
}
free(ptr);
rb_thread_critical = ptr->thr_crit_bup;
free(ptr);
DUMP2("finish current eventloop %lx", current_evloop);
return Qnil;
}