mirror of
https://github.com/shchmue/Lockpick_RCM.git
synced 2024-11-05 05:25:08 +01:00
keys: Protect against free-before-use of kip
This commit is contained in:
parent
7a486e547e
commit
0459e813cf
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user