Skip to content
Snippets Groups Projects
Commit d3f80c77 authored by Horst Kronstorfer's avatar Horst Kronstorfer Committed by Wolfgang Denk
Browse files

common/cmd_nvedit.c: Fix size calculation in do_env_import()


do_env_import() missed the final '\0' terminator when calculating the
size of an environment data block.  This led to an erroneous 'bad CRC,
import failed' message for a checksum protected environment (-c.)

Signed-off-by: default avatarHorst Kronstorfer <hkronsto@frequentis.com>
parent a7b39185
No related branches found
No related tags found
No related merge requests found
...@@ -868,7 +868,7 @@ static int do_env_import(cmd_tbl_t *cmdtp, int flag, ...@@ -868,7 +868,7 @@ static int do_env_import(cmd_tbl_t *cmdtp, int flag,
printf("## Warning: Input data exceeds %d bytes" printf("## Warning: Input data exceeds %d bytes"
" - truncated\n", MAX_ENV_SIZE); " - truncated\n", MAX_ENV_SIZE);
} }
++size; size += 2;
printf("## Info: input data size = %zu = 0x%zX\n", size, size); printf("## Info: input data size = %zu = 0x%zX\n", size, size);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment