tools/msximage.c: fix warning about nptr possibly uninitialized

Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
This commit is contained in:
Albert ARIBAUD 2014-11-14 16:16:44 +01:00 committed by Stefano Babic
parent cdbdde3f56
commit 3cb4b713e1
1 changed files with 1 additions and 1 deletions

View File

@ -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. */