From af1c8902951e3a0856efdf924d0a3cbb5b2d6c7e Mon Sep 17 00:00:00 2001 From: akallabeth Date: Thu, 11 Apr 2024 13:27:16 +0200 Subject: [PATCH] [coverity] 1543263 Missing unlock --- client/common/client_cliprdr_file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/common/client_cliprdr_file.c b/client/common/client_cliprdr_file.c index d74efcc21..ccee1eb97 100644 --- a/client/common/client_cliprdr_file.c +++ b/client/common/client_cliprdr_file.c @@ -555,6 +555,7 @@ static UINT prepare_clip_data_entry_with_id(CliprdrFileContext* file_context) { WLog_Print(file_context->log, WLOG_ERROR, "Failed to insert clipDataEntry"); clip_data_entry_free(clip_data_entry); + HashTable_Unlock(file_context->inode_table); return ERROR_INTERNAL_ERROR; } HashTable_Unlock(file_context->inode_table);