diff --git a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp index c6cbccf094a..6637cdd7619 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp @@ -352,6 +352,8 @@ void JitManager::DumpToFile(Function *f, const char *fileName) extern "C" { + bool g_DllActive = true; + ////////////////////////////////////////////////////////////////////////// /// @brief Create JIT context. /// @param simdWidth - SIMD width to be used in generated program. @@ -364,6 +366,9 @@ extern "C" /// @brief Destroy JIT context. void JITCALL JitDestroyContext(HANDLE hJitContext) { - delete reinterpret_cast(hJitContext); + if (g_DllActive) + { + delete reinterpret_cast(hJitContext); + } } }