Avoid strdup(0) in build_opt_tbl

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5446 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2010-04-15 14:55:01 +00:00
parent 1c797a101b
commit c24d383c15
1 changed files with 1 additions and 1 deletions

View File

@ -570,7 +570,7 @@ int main(int argc, char **argv)
struct cmos_option_table *hdr;
struct lb_record *ptr, *end;
strncpy(tempfilename, dirname(strdup(option)), TMPFILE_LEN);
strncpy(tempfilename, dirname(strdup(header)), TMPFILE_LEN);
strncat(tempfilename, TMPFILE_TEMPLATE, TMPFILE_LEN);
tempfile = mkstemp(tempfilename);
if(tempfile == -1) {