You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by iv...@apache.org on 2019/09/09 21:41:22 UTC

svn commit: r1866712 - /apr/apr/trunk/test/testlock.c

Author: ivan
Date: Mon Sep  9 21:41:22 2019
New Revision: 1866712

URL: http://svn.apache.org/viewvc?rev=1866712&view=rev
Log:
Follow-up to r1866300: Add missing return value in test function.

Modified:
    apr/apr/trunk/test/testlock.c

Modified: apr/apr/trunk/test/testlock.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/testlock.c?rev=1866712&r1=1866711&r2=1866712&view=diff
==============================================================================
--- apr/apr/trunk/test/testlock.c (original)
+++ apr/apr/trunk/test/testlock.c Mon Sep  9 21:41:22 2019
@@ -436,6 +436,8 @@ thread_win32_abandoned_mutex_function(ap
 
     /* exit from thread without unlocking mutex. */
     apr_thread_exit(thd, rv);
+
+    return NULL;
 }
 
 static void test_win32_abandoned_mutex(abts_case *tc, void *data)