diff options
author | hobbs <hobbs> | 2004-05-25 00:08:23 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-05-25 00:08:23 (GMT) |
commit | 2178c51e4f47a6c6e161dc11518bfa588422d69c (patch) | |
tree | fdecaaf0163378551be35c84575090618075a5cc /generic | |
parent | 12e64294fc3db4bba8ccacd7a75e769c759ca1ab (diff) | |
download | tcl-2178c51e4f47a6c6e161dc11518bfa588422d69c.zip tcl-2178c51e4f47a6c6e161dc11518bfa588422d69c.tar.gz tcl-2178c51e4f47a6c6e161dc11518bfa588422d69c.tar.bz2 |
* generic/tclExecute.c (VerifyExprObjType): use GET_WIDE_OR_INT to
properly have tclIntType used for smaller values. This corrects
TclX bug 896727 and any other 3rd party extension that created
math functions but was not yet WIDE_INT aware in them.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 10980db..4f3dff4 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.94.2.5 2003/09/19 18:43:00 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.94.2.6 2004/05/25 00:08:23 hobbs Exp $ */ #include "tclInt.h" @@ -4739,8 +4739,9 @@ VerifyExprObjType(interp, objPtr) char *s = Tcl_GetStringFromObj(objPtr, &length); if (TclLooksLikeInt(s, length)) { + long i; Tcl_WideInt w; - result = Tcl_GetWideIntFromObj((Tcl_Interp *) NULL, objPtr, &w); + GET_WIDE_OR_INT(result, objPtr, i, w); } else { double d; result = Tcl_GetDoubleFromObj((Tcl_Interp *) NULL, objPtr, &d); |