[apr-util] Fix issues reported by scan-build.

This commit is contained in:
Andrey Volk
2020-02-14 18:39:15 +04:00
parent 5378eae101
commit a7cdf35b60
3 changed files with 6 additions and 4 deletions

View File

@@ -222,7 +222,7 @@ APU_DECLARE(apr_status_t) apr_queue_trypush(apr_queue_t *queue, void *data)
}
if (apr_queue_full(queue)) {
rv = apr_thread_mutex_unlock(queue->one_big_mutex);
apr_thread_mutex_unlock(queue->one_big_mutex);
return APR_EAGAIN;
}
@@ -397,7 +397,7 @@ APU_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);
apr_thread_mutex_unlock(queue->one_big_mutex);
return APR_EAGAIN;
}