summaryrefslogtreecommitdiff
path: root/util-misc
diff options
context:
space:
mode:
authorPhilip M. Gollucci <pgollucci@apache.org>2010-08-05 19:17:36 +0000
committerPhilip M. Gollucci <pgollucci@apache.org>2010-08-05 19:17:36 +0000
commit51779e850cc5a9e303481542283f2f2882b0ecd9 (patch)
treeaefcd816c52223444cbab87a092ddd074d3859bc /util-misc
parent8573945a51a669e51d9ed67d663cbcbd80783e9a (diff)
downloadapr-51779e850cc5a9e303481542283f2f2882b0ecd9.tar.gz
- remove unused assignment
Reported by: clang static analyzer git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@982736 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'util-misc')
-rw-r--r--util-misc/apr_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-misc/apr_queue.c b/util-misc/apr_queue.c
index a1682f8f2..66b74dcea 100644
--- a/util-misc/apr_queue.c
+++ b/util-misc/apr_queue.c
@@ -330,7 +330,7 @@ APR_DECLARE(apr_status_t) apr_queue_trypop(apr_queue_t *queue, void **data)
}
if (apr_queue_empty(queue)) {
- rv = apr_thread_mutex_unlock(queue->one_big_mutex);
+ (void)apr_thread_mutex_unlock(queue->one_big_mutex);
return APR_EAGAIN;
}