Commit 089a3352 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Assert that dlclose()'ing the vmod succeeds.

parent 549c7061
...@@ -123,7 +123,7 @@ VRT_Vmod_Fini(void **hdl) ...@@ -123,7 +123,7 @@ VRT_Vmod_Fini(void **hdl)
if (--v->ref != 0) if (--v->ref != 0)
return; return;
#ifndef DONT_DLCLOSE_VMODS #ifndef DONT_DLCLOSE_VMODS
dlclose(v->hdl); AZ(dlclose(v->hdl));
#endif #endif
free(v->nm); free(v->nm);
free(v->path); free(v->path);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment