diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-22 16:13:29 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-22 16:13:29 (GMT) |
commit | f8dfc60a3d144141a5b93a3b9326e162cbf5cdef (patch) | |
tree | b1f47864a1e6d2f2a2c460cf028ff2fee383f490 /generic | |
parent | 6bdb21a3a0573fcd1a3750d8f163f624d4e07a69 (diff) | |
download | tcl-f8dfc60a3d144141a5b93a3b9326e162cbf5cdef.zip tcl-f8dfc60a3d144141a5b93a3b9326e162cbf5cdef.tar.gz tcl-f8dfc60a3d144141a5b93a3b9326e162cbf5cdef.tar.bz2 |
Remove assertion that is not true in some circumstances (--enable-dtrace).
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index d066476..96004e2 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -8798,8 +8798,7 @@ TclGetSrcInfoForPc( &cfPtr->len, NULL, NULL); } - assert(cfPtr->cmd != NULL); - { + if (cfPtr->cmd != NULL) { /* * We now have the command. We can get the srcOffset back and from * there find the list of word locations for this command. |