mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
tools/msximage.c: fix warning about nptr possibly uninitialized
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
This commit is contained in:
parent
cdbdde3f56
commit
3cb4b713e1
1 changed files with 1 additions and 1 deletions
|
@ -1416,7 +1416,7 @@ static int sb_parse_line(struct sb_image_ctx *ictx, struct sb_cmd_list *cmd)
|
||||||
{
|
{
|
||||||
char *tok;
|
char *tok;
|
||||||
char *line = cmd->cmd;
|
char *line = cmd->cmd;
|
||||||
char *rptr;
|
char *rptr = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* Analyze the identifier on this line first. */
|
/* Analyze the identifier on this line first. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue