зеркало из https://github.com/nextcloud/desktop.git
c_time: Fix resource leak in error case
This fixes Coverity CID 12903
This commit is contained in:
Родитель
6b041b0846
Коммит
f9710cc1d5
|
@ -135,7 +135,8 @@ int c_utimes(const char *uri, const struct timeval *times) {
|
|||
if(!SetFileTime(hFile, NULL, &LastAccessTime, &LastModificationTime)) {
|
||||
//can this happen?
|
||||
errno=ENOENT;
|
||||
CloseHandle(hFile);
|
||||
CloseHandle(hFile);
|
||||
c_free_locale_string(wuri);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче