summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2022-02-08 19:26:16 +0000
committerYann Ylavic <ylavic@apache.org>2022-02-08 19:26:16 +0000
commit89682a8e2e5eb498b6c4e4ff162052c7e2406a0b (patch)
tree7995a6379e24f3fec43c63886baca0123d834e78 /threadproc/beos
parent832ec99195140a3356df7577f3d875253335068a (diff)
downloadapr-89682a8e2e5eb498b6c4e4ff162052c7e2406a0b.tar.gz
apr_thread: Follow up to r1897207: apr_thread_current_create() compilation.
Fix compilation of apr_thread_current_create() for OS/2 and Windows. Set *current to NULL on failure. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1897879 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/thread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/threadproc/beos/thread.c b/threadproc/beos/thread.c
index 435c2c8a9..f5752a81e 100644
--- a/threadproc/beos/thread.c
+++ b/threadproc/beos/thread.c
@@ -173,6 +173,7 @@ APR_DECLARE(apr_status_t) apr_thread_current_create(apr_thread_t **current,
stat = alloc_thread(current, attr, NULL, NULL, pool);
if (stat != APR_SUCCESS) {
+ *current = NULL;
return stat;
}