mirror of
https://gitee.com/Armink/EasyFlash.git
synced 2024-12-01 19:58:43 +08:00
【修正】1.如果环境变量key已存在,使用ef_get_env_blob("key", NULL, 0, &len)会出现assert错误。
2.第一次初始化时由于combined值随机导致get_next_sector_addr(sector)获取到的地址错误
This commit is contained in:
parent
058f773c1b
commit
779210861b
@ -619,6 +619,7 @@ static EfErrCode read_sector_meta_data(uint32_t addr, sector_meta_data_t sector,
|
||||
/* check magic word */
|
||||
if (sector->magic != SECTOR_MAGIC_WORD) {
|
||||
sector->check_ok = false;
|
||||
sector->combined = SECTOR_NOT_COMBINED;
|
||||
return EF_ENV_INIT_FAILED;
|
||||
}
|
||||
sector->check_ok = true;
|
||||
@ -809,7 +810,9 @@ static size_t get_env(const char *key, void *value_buf, size_t buf_len, size_t *
|
||||
} else {
|
||||
read_len = buf_len;
|
||||
}
|
||||
ef_port_read(env.addr.value, (uint32_t *) value_buf, read_len);
|
||||
if (value_buf){
|
||||
ef_port_read(env.addr.value, (uint32_t *) value_buf, read_len);
|
||||
}
|
||||
}
|
||||
|
||||
return read_len;
|
||||
|
Loading…
Reference in New Issue
Block a user