diff options
| author | dgp@users.sourceforge.net <dgp> | 2013-09-16 23:18:54 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2013-09-16 23:18:54 (GMT) |
| commit | be00c674b393acaee5360f9d16ffea28b316f327 (patch) | |
| tree | b0810b2e2b7aff016283402aff3d2dba43a45244 | |
| parent | 026cacde90cf342bbee5b036172692d4f64bfeca (diff) | |
| download | tcl-be00c674b393acaee5360f9d16ffea28b316f327.zip tcl-be00c674b393acaee5360f9d16ffea28b316f327.tar.gz tcl-be00c674b393acaee5360f9d16ffea28b316f327.tar.bz2 | |
[7b32d8d13b] Insert missing field initialization.
| -rw-r--r-- | generic/tclAssembly.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclAssembly.c b/generic/tclAssembly.c index 100e9ef..946c729 100644 --- a/generic/tclAssembly.c +++ b/generic/tclAssembly.c @@ -2617,6 +2617,7 @@ AllocBB( bb->minStackDepth = 0; bb->maxStackDepth = 0; bb->finalStackDepth = 0; + bb->catchDepth = 0; bb->enclosingCatch = NULL; bb->foreignExceptionBase = -1; bb->foreignExceptionCount = 0; |
