1
0
Fork 0
mirror of https://github.com/s1204IT/Lockpick_RCM.git synced 2024-09-19 21:44:54 +01:00

keys: Protect against free-before-use of kip

This commit is contained in:
shchmue 2019-12-07 17:01:16 -07:00
parent 7a486e547e
commit 0459e813cf

View file

@ -483,9 +483,11 @@ get_tsec: ;
}
}
pkg2_done:
free(ki->kip1);
if (ki) {
free(ki->kip1);
free(ki);
}
free(pkg2);
free(ki);
u8 *rights_ids = NULL, *titlekeys = NULL;