Skip to content

Commit b00bfb1

Browse files
committed
[libesl] Coverity 1024459 Missing unlock
1 parent 6806da4 commit b00bfb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/esl/src/esl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ ESL_DECLARE(esl_status_t) esl_recv_event_timed(esl_handle_t *handle, uint32_t ms
12171217
status = ESL_BREAK;
12181218
}
12191219

1220-
if (handle->mutex) esl_mutex_unlock(handle->mutex);
1220+
esl_mutex_unlock(handle->mutex);
12211221

12221222
return status;
12231223

0 commit comments

Comments
 (0)