mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
close file and file mapping handles
This commit is contained in:
parent
efbe570f27
commit
c197d7727c
@ -4865,10 +4865,12 @@ static char *map_file(const char *infile, const size_t size)
|
||||
return NULL;
|
||||
}
|
||||
fmap = CreateFileMapping(fhandle, NULL, PAGE_READONLY, 0, 0, NULL);
|
||||
CloseHandle(fhandle);
|
||||
if (fmap == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
indata = (char *)MapViewOfFile(fmap, FILE_MAP_READ, 0, 0, 0);
|
||||
CloseHandle(fmap);
|
||||
#else
|
||||
int fd = open(infile, O_RDONLY);
|
||||
if (fd < 0) {
|
||||
@ -5076,6 +5078,7 @@ static int read_password(GLOBAL_OPTIONS *options)
|
||||
return 0; /* FAILED */
|
||||
}
|
||||
faddress = MapViewOfFile(fmap, FILE_MAP_READ, 0, 0, 0);
|
||||
CloseHandle(fmap);
|
||||
if (faddress == NULL) {
|
||||
return 0; /* FAILED */
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user