wrowe commented on a change in pull request #34: URL: https://github.com/apache/apr/pull/34#discussion_r827131584
########## File path: locks/unix/global_mutex.c ########## @@ -86,6 +86,10 @@ APR_DECLARE(apr_status_t) apr_global_mutex_child_init( { apr_status_t rv; + if (*mutex == NULL) { + return APR_ENOLOCK; + } + Review comment: Specifically, for APR 2.0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@apr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org