mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Fix out-of-bounds read, CID 1519383
This commit is contained in:
parent
fef65536f6
commit
efbe570f27
3
msi.c
3
msi.c
@ -319,7 +319,8 @@ static MSI_ENTRY *parse_entry(MSI_FILE *msi, const u_char *data, int is_root)
|
||||
memcpy(entry->name, data + DIRENT_NAME, entry->nameLen);
|
||||
/* The root directory entry's Name field MUST contain the null-terminated
|
||||
* string "Root Entry" in Unicode UTF-16. */
|
||||
if (is_root && memcmp(entry->name, msi_root_entry, entry->nameLen)) {
|
||||
if (is_root && (entry->nameLen != sizeof msi_root_entry
|
||||
|| memcmp(entry->name, msi_root_entry, entry->nameLen))) {
|
||||
printf("Corrupted Root Directory Entry's Name\n");
|
||||
OPENSSL_free(entry);
|
||||
return NULL; /* FAILED */
|
||||
|
Loading…
x
Reference in New Issue
Block a user