From 40784eec1443aeb03b936a7e779dfeb77faa2a3f Mon Sep 17 00:00:00 2001 From: hobbs Date: Tue, 25 May 2004 00:07:53 +0000 Subject: * 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. --- ChangeLog | 7 +++++++ generic/tclExecute.c | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b7530ba..dd8d67d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-05-24 Jeff Hobbs + + * 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. + 2004-05-24 Donal K. Fellows * generic/tclInterp.c (TclInitLimitSupport): Made limits work on diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 7d83f86..bff18c9 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.139 2004/05/21 22:03:30 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.140 2004/05/25 00:07:54 hobbs Exp $ */ #include "tclInt.h" @@ -5400,8 +5400,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); -- cgit v0.12