1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Unlock mutex in error path.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1776006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Christophe Jaillet
2016-12-25 11:11:30 +00:00
parent f954d103a4
commit 4b509440bc

View File

@@ -471,6 +471,9 @@ lua_State *ap_lua_get_lua_state(apr_pool_t *lifecycle_pool,
cache_info = sspec->finfo;
}
else {
#if APR_HAS_THREADS
apr_thread_mutex_unlock(ap_lua_mutex);
#endif
return NULL;
}
}