diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclNamesp.c | 7 | ||||
-rw-r--r-- | generic/tclStubLib.c | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index e596e70..a4c4f2e 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -21,7 +21,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNamesp.c,v 1.35 2003/12/24 04:18:20 davygrvy Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.36 2004/03/18 18:54:58 rmax Exp $ */ #include "tclInt.h" @@ -3093,6 +3093,7 @@ NamespaceEvalCmd(dummy, interp, objc, objv) { Tcl_Namespace *namespacePtr; CallFrame frame; + CallFrame *framep; Tcl_Obj *objPtr; char *name; int length, result; @@ -3130,7 +3131,9 @@ NamespaceEvalCmd(dummy, interp, objc, objv) * the command(s). */ - result = Tcl_PushCallFrame(interp, (Tcl_CallFrame *) &frame, + /* This is needed to satisfy GCC 3.3's strict aliasing rules */ + framep = &frame; + result = Tcl_PushCallFrame(interp, (Tcl_CallFrame *) framep, namespacePtr, /*isProcCallFrame*/ 0); if (result != TCL_OK) { return TCL_ERROR; diff --git a/generic/tclStubLib.c b/generic/tclStubLib.c index c650dac..91e5cef 100644 --- a/generic/tclStubLib.c +++ b/generic/tclStubLib.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubLib.c,v 1.6 2002/12/04 07:07:59 hobbs Exp $ + * RCS: @(#) $Id: tclStubLib.c,v 1.7 2004/03/18 18:55:16 rmax Exp $ */ /* @@ -88,6 +88,7 @@ Tcl_InitStubs (interp, version, exact) { CONST char *actualVersion = NULL; TclStubs *tmp; + TclStubs **tmpp; /* * We can't optimize this check by caching tclStubsPtr because @@ -100,8 +101,10 @@ Tcl_InitStubs (interp, version, exact) return NULL; } + /* This is needed to satisfy GCC 3.3's strict aliasing rules */ + tmpp = &tmp; actualVersion = Tcl_PkgRequireEx(interp, "Tcl", version, exact, - (ClientData *) &tmp); + (ClientData *) tmpp); if (actualVersion == NULL) { tclStubsPtr = NULL; return NULL; |