From cb4ddd3213abe1dba5efac30f0fc36a710fdbf10 Mon Sep 17 00:00:00 2001 From: Yutetsu TAKATSUKASA Date: Sat, 19 Dec 2020 23:13:18 +0900 Subject: [PATCH] Update files from GTKWave f119b35816e605e753fc1a24ae121a3787615b26 (#2716) --- include/gtkwave/fstapi.c | 7 ++++--- include/gtkwave/wavealloca.h | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) 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