From b89665d93dc30906ed00dab59611c7b30a4d2573 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 4 Jul 2015 08:50:27 +0000 Subject: [PATCH] Reacted on cppcheck warning about uninitialized variable --- xorriso/read_run.c | 2 +- xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorriso/read_run.c b/xorriso/read_run.c index 59024328..0731d09f 100644 --- a/xorriso/read_run.c +++ b/xorriso/read_run.c @@ -991,7 +991,7 @@ int Xorriso_restore_disk_object(struct XorrisO *xorriso, int ret, i, split_count= 0, partno, total_parts, leaf_is_split= 0; int record_hl_path= 0, node_idx, cannot_register= 0; off_t total_bytes; - char *part_name, *part_path= NULL, *img_path_pt; + char *part_name, *part_path= NULL, *img_path_pt= NULL; IsoImage *volume; IsoNode *part_node, *first_part_node= NULL; struct SplitparT *split_parts= NULL; diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index abfea55a..a2039c26 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2015.07.04.084911" +#define Xorriso_timestamP "2015.07.04.085116"