diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | generic/tclOOCall.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2011-03-01 Miguel Sofer <msofer@users.sf.net> + * generic/tclOOCall.c (TclOODeleteContext): added missing '*' so + that trunk compiles. + * generic/tclBasic.c (TclNRRunCallbacks): don't do the trampoline dance for commands that do not have an nreProc, [Patch 3168229] diff --git a/generic/tclOOCall.c b/generic/tclOOCall.c index 292e9e0..dd64eaa 100644 --- a/generic/tclOOCall.c +++ b/generic/tclOOCall.c @@ -101,7 +101,7 @@ void TclOODeleteContext( CallContext *contextPtr) { - register Object oPtr = contextPtr->oPtr; + register Object *oPtr = contextPtr->oPtr; TclOODeleteChain(contextPtr->callPtr); TclStackFree(oPtr->fPtr->interp, contextPtr); |