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
|
@ -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…
Reference in New Issue