https://issues.apache.org/bugzilla/show_bug.cgi?id=52779
--- Comment #2 from Dick Snippe <[email protected]> --- Because static apr_status_t vm_construct(void **vm, void *params, apr_pool_t *lifecycle_pool) does a *vm = L and thereby dereferences a void pointer. When I change it to static apr_status_t vm_construct(lua_State **vm, void *params, apr_pool_t *lifecycle_pool) the function acts as expected and the problem appers to be solved -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
