diff --git a/include/gtkwave/fstapi.c b/include/gtkwave/fstapi.c index fe2320da7..3cb4652c9 100644 --- a/include/gtkwave/fstapi.c +++ b/include/gtkwave/fstapi.c @@ -1806,6 +1806,7 @@ xc->already_in_flush = 0; static void *fstWriterFlushContextPrivate1(void *ctx) { struct fstWriterContext *xc = (struct fstWriterContext *)ctx; +struct fstWriterContext *xc_parent; pthread_mutex_lock(&(xc->xc_parent->mutex)); fstWriterFlushContextPrivate2(xc); @@ -1816,11 +1817,11 @@ free(xc->curval_mem); free(xc->valpos_mem); free(xc->vchg_mem); tmpfile_close(&xc->tchn_handle, &xc->tchn_handle_nam); -fstWriterContext* const parent = xc->xc_parent; +xc_parent = xc->xc_parent; free(xc); -parent->in_pthread = 0; -pthread_mutex_unlock(&(parent->mutex)); +xc_parent->in_pthread = 0; +pthread_mutex_unlock(&(xc_parent->mutex)); return(NULL); } diff --git a/include/gtkwave/wavealloca.h b/include/gtkwave/wavealloca.h index 8fa7d8090..951d7b2f7 100644 --- a/include/gtkwave/wavealloca.h +++ b/include/gtkwave/wavealloca.h @@ -35,6 +35,9 @@ #else #include #endif +#elif defined(_MSC_VER) +#include +#define alloca _alloca #endif #define wave_alloca alloca #endif