diff options
| author | andreask@activestate.com <andreas_kupries> | 2008-07-07 21:39:20 (GMT) |
|---|---|---|
| committer | andreask@activestate.com <andreas_kupries> | 2008-07-07 21:39:20 (GMT) |
| commit | b9980fa85a33b64e7fdfaaf15631b4a31e06dd76 (patch) | |
| tree | 836de50080cfa911c884b92d6a439ed3413a56df | |
| parent | ffe15e1bf4f5d6e2d71fe190bdf9ab2bb27a8344 (diff) | |
| download | tcl-b9980fa85a33b64e7fdfaaf15631b4a31e06dd76.zip tcl-b9980fa85a33b64e7fdfaaf15631b4a31e06dd76.tar.gz tcl-b9980fa85a33b64e7fdfaaf15631b4a31e06dd76.tar.bz2 | |
* generic/tclCmdIL.c (InfoFrameCmd): Fixed unsafe idiom of setting
the interp result found by Don Porter.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | generic/tclCmdIL.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2008-07-07 Andreas Kupries <andreask@activestate.com> + + * generic/tclCmdIL.c (InfoFrameCmd): Fixed unsafe idiom of setting + the interp result found by Don Porter. + 2008-07-04 Joe English <jenglish@users.sourceforge.net> * generic/tclEncoding.c(UtfToUtfProc): Avoid unwanted sign extension diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index 861a008..54359af 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdIL.c,v 1.47.2.14 2008/06/16 20:46:15 andreas_kupries Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.47.2.15 2008/07/07 21:39:22 andreas_kupries Exp $ */ #include "tclInt.h" @@ -1074,7 +1074,7 @@ InfoFrameCmd(dummy, interp, objc, objv) ? 0 : iPtr->cmdFramePtr->level); - Tcl_SetIntObj(Tcl_GetObjResult(interp), levels); + Tcl_SetObjResult(interp, Tcl_NewIntObj (levels)); return TCL_OK; } else if (objc == 3) { |
