mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/tk/tcltklib.c (ip_rb_threadVwaitCommand): Tcl_Release was missing.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8cd944803e
commit
4fb012a86a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jun 16 15:09:38 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||
|
||||
* ext/tk/tcltklib.c (ip_rb_threadVwaitCommand): Tcl_Release was missing.
|
||||
|
||||
Thu Jun 16 13:34:48 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/tk.rb: add Tk.getMultiple{Open|Save}File() which return
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Oct. 24, 1997 Y. Matsumoto
|
||||
*/
|
||||
|
||||
#define TCLTKLIB_RELEASE_DATE "2005-04-26"
|
||||
#define TCLTKLIB_RELEASE_DATE "2005-06-16"
|
||||
|
||||
#include "ruby.h"
|
||||
#include "rubysig.h"
|
||||
|
@ -3930,6 +3930,7 @@ ip_rb_threadVwaitCommand(clientData, interp, objc, objv)
|
|||
rb_thread_critical = thr_crit_bup;
|
||||
|
||||
if (ret != TCL_OK) {
|
||||
Tcl_Release(param);
|
||||
Tcl_Free((char *)param);
|
||||
|
||||
#if TCL_MAJOR_VERSION >= 8
|
||||
|
|
Loading…
Reference in a new issue