diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tclCompile.c | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2011-07-15 Don Porter <dgp@users.sourceforge.net> + + * generic/tclCompile.c: Avoid segfaults when RecordByteCodeStats() + is called in a deleted interp. + 2011-07-13 Don Porter <dgp@users.sourceforge.net> * generic/tclProc.c: [Bug 3366265] Buffer for storing the command diff --git a/generic/tclCompile.c b/generic/tclCompile.c index f29c54e..e281a0a 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -4012,6 +4012,11 @@ RecordByteCodeStats(codePtr) Interp *iPtr = (Interp *) *codePtr->interpHandle; register ByteCodeStats *statsPtr = &(iPtr->stats); + if (iPtr == NULL) { + /* Avoid segfaulting in case we're called in a deleted interp */ + return; + } + statsPtr->numCompilations++; statsPtr->totalSrcBytes += (double) codePtr->numSrcBytes; statsPtr->totalByteCodeBytes += (double) codePtr->structureSize; |