exo: Fix prodinfo blanking overriding

This commit is contained in:
CTCaer
2020-05-05 18:58:53 +03:00
parent e8f41a03f3
commit c7ab404fc1
2 changed files with 4 additions and 4 deletions

View File

@@ -223,7 +223,7 @@ static int _config_exo_user_pmu_access(launch_ctxt_t *ctxt, const char *value)
static int _config_exo_cal0_blanking(launch_ctxt_t *ctxt, const char *value)
{
// Override key found.
ctxt->exo_cfg.cal0_blank = calloc(1, 1);
ctxt->exo_cfg.cal0_blank = calloc(sizeof(bool), 1);
if (*value == '1')
{
@@ -236,7 +236,7 @@ static int _config_exo_cal0_blanking(launch_ctxt_t *ctxt, const char *value)
static int _config_exo_cal0_writes_enable(launch_ctxt_t *ctxt, const char *value)
{
// Override key found.
ctxt->exo_cfg.cal0_allow_writes_sys = calloc(1, 1);
ctxt->exo_cfg.cal0_allow_writes_sys = calloc(sizeof(bool), 1);
if (*value == '1')
{