package2: Correct -> to . in load_package2

header is a local on the stack, so this should just be regular member accessing
This commit is contained in:
Lioncash 2018-02-22 23:40:23 -05:00
parent 4131a61d00
commit 02cf37b137
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7

View File

@ -443,7 +443,7 @@ void load_package2(void) {
uint32_t package2_mkey_rev = decrypt_and_validate_header(&header); uint32_t package2_mkey_rev = decrypt_and_validate_header(&header);
/* Load Package2 Sections. */ /* Load Package2 Sections. */
load_package2_sections(&header->metadata, package2_mkey_rev); load_package2_sections(&header.metadata, package2_mkey_rev);
/* Clean up cache. */ /* Clean up cache. */
flush_dcache_all(); flush_dcache_all();