]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add default return value in win32 isc_thread_join()
authorOndřej Surý <ondrej@isc.org>
Thu, 16 Apr 2020 06:22:40 +0000 (08:22 +0200)
committerOndřej Surý <ondrej@isc.org>
Thu, 16 Apr 2020 06:22:40 +0000 (08:22 +0200)
lib/isc/win32/thread.c

index c0f71d36cba7c4ce04536439f0235f59a1d56b6e..ebc2f2936f0f0e29932b42b3df8835b56c63e1fd 100644 (file)
@@ -48,6 +48,8 @@ isc_thread_join(isc_thread_t thread, isc_threadresult_t *rp) {
                return (ISC_R_UNEXPECTED);
        }
        (void)CloseHandle(thread);
+
+       return (ISC_R_SUCCESS);
 }
 
 void