Fixed key save buffer non-zero init error

This commit is contained in:
shchmue 2019-09-29 23:07:05 -06:00
parent 9ceb56f743
commit 21e8ca6204
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ include $(DEVKITARM)/base_rules
IPL_LOAD_ADDR := 0x40003000
LPVERSION_MAJOR := 1
LPVERSION_MINOR := 6
LPVERSION_BUGFX := 0
LPVERSION_BUGFX := 1
################################################################################

View File

@ -959,7 +959,7 @@ dismount:
nx_emmc_gpt_free(&gpt);
key_output: ;
char *text_buffer = (char *)malloc(_titlekey_count * 68 < 0x3000 ? 0x3000 : _titlekey_count * 68 + 1);
char *text_buffer = (char *)calloc(1, _titlekey_count * 68 < 0x3000 ? 0x3000 : _titlekey_count * 68 + 1);
SAVE_KEY("aes_kek_generation_source", aes_kek_generation_source, 0x10);
SAVE_KEY("aes_key_generation_source", aes_key_generation_source, 0x10);