diff options
Diffstat (limited to 'runtime/wti.c')
-rw-r--r-- | runtime/wti.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/wti.c b/runtime/wti.c index 14964fb0..8994d84b 100644 --- a/runtime/wti.c +++ b/runtime/wti.c @@ -147,6 +147,8 @@ BEGINobjDestruct(wti) /* be sure to specify the object type also in END and CODE CODESTARTobjDestruct(wti) /* actual destruction */ free(pThis->batch.pElem); + DESTROY_ATOMIC_HELPER_MUT(pThis->mutCurrCmd); + free(pThis->pszDbgHdr); ENDobjDestruct(wti) @@ -154,6 +156,7 @@ ENDobjDestruct(wti) /* Standard-Constructor for the wti object */ BEGINobjConstruct(wti) /* be sure to specify the object type also in END macro! */ + INIT_ATOMIC_HELPER_MUT(pThis->mutCurrCmd); ENDobjConstruct(wti) |