diff options
| author | andreask@activestate.com <andreas_kupries> | 2008-07-07 21:40:18 (GMT) |
|---|---|---|
| committer | andreask@activestate.com <andreas_kupries> | 2008-07-07 21:40:18 (GMT) |
| commit | 45cb5b5df99a400aa3d8527e861c9639ba49baad (patch) | |
| tree | 2cc06dcbfbbf8052e107b97ffb9f69c6258d4417 | |
| parent | d5e585bdc7a5075a42e66d75500cb52208938a08 (diff) | |
| download | tcl-45cb5b5df99a400aa3d8527e861c9639ba49baad.zip tcl-45cb5b5df99a400aa3d8527e861c9639ba49baad.tar.gz tcl-45cb5b5df99a400aa3d8527e861c9639ba49baad.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-07 Donal K. Fellows <dkf@users.sf.net> * doc/regexp.n, doc/regsub.n: Correct examples. [Bug 1982642] diff --git a/generic/tclCmdIL.c b/generic/tclCmdIL.c index c73f41f..4eef275 100644 --- a/generic/tclCmdIL.c +++ b/generic/tclCmdIL.c @@ -16,7 +16,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.142 2008/06/30 01:10:46 das Exp $ + * RCS: @(#) $Id: tclCmdIL.c,v 1.143 2008/07/07 21:40:18 andreas_kupries Exp $ */ #include "tclInt.h" @@ -1044,7 +1044,7 @@ InfoFrameCmd( int levels = (iPtr->cmdFramePtr == NULL ? 0 : iPtr->cmdFramePtr->level); - Tcl_SetIntObj(Tcl_GetObjResult(interp), levels); + Tcl_SetObjResult(interp, Tcl_NewIntObj (levels)); return TCL_OK; } else if (objc != 2) { Tcl_WrongNumArgs(interp, 1, objv, "?number?"); |
