lavfi/vulkan: allow calling glslang_uninit without a prior init

Allows us to uninit cleanly.
This assert was also somewhat pointless as we assert every other
function, so another assert would be triggered long before this
one is.
pull/358/head
Lynne 4 years ago
parent 993d8d9429
commit ae8fc9922e
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
  1. 3
      libavfilter/glslang.cpp

@ -235,8 +235,7 @@ int glslang_init(void)
void glslang_uninit(void)
{
pthread_mutex_lock(&glslang_mutex);
av_assert0(glslang_refcount > 0);
if (--glslang_refcount == 0)
if (glslang_refcount && (--glslang_refcount == 0))
FinalizeProcess();
pthread_mutex_unlock(&glslang_mutex);
}

Loading…
Cancel
Save