Avoid strdup(0) in build_opt_tbl
authorPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 15 Apr 2010 14:55:01 +0000 (14:55 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 15 Apr 2010 14:55:01 +0000 (14:55 +0000)
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

util/options/build_opt_tbl.c

index b4e4151dc179cb1f33a8ba7cc57fd9b009208c1a..ae36f87e03c9940f448496e2ab25cb6cd215c1c8 100644 (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) {