Reacted on cppcheck warning about uninitialized variable

This commit is contained in:
Thomas Schmitt 2015-07-04 08:50:27 +00:00
parent 1a15cc20f9
commit b89665d93d
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2015.07.04.084911"
#define Xorriso_timestamP "2015.07.04.085116"