mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2024-12-02 15:47:10 +00:00
Fix Coverity #343017, Missing unlock
All other returns from this function unlock the responses_lock, so we also should release the lock in this case. Change-Id: Ie2cfa8755723fed79e809f9480190d11f373a217 Signed-off-by: Justin Chadwell <justin.chadwell@arm.com>
This commit is contained in:
parent
4249e8b94f
commit
fc6b626c6b
@ -38,6 +38,8 @@ int spm_response_add(uint16_t client_id, uint16_t handle, uint32_t token,
|
||||
struct sprt_response *resp = &(responses[i]);
|
||||
|
||||
if ((resp->is_valid == 1) && (resp->token == token)) {
|
||||
spin_unlock(&responses_lock);
|
||||
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user