Added a missing pointer initialization. Thanks Eliska Svobodova.

This commit is contained in:
Thomas Schmitt 2019-08-13 18:19:33 +02:00
parent e17db6aa3e
commit b356291700
2 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ int Xorriso_add_tree(struct XorrisO *xorriso, IsoDir *dir,
char *name, *img_name, *srcpt, *stbuf_src= "";
struct stat stbuf, hstbuf;
dev_t dir_dev;
struct LinkiteM *own_link_stack;
struct LinkiteM *own_link_stack = NULL;
char *sfe= NULL, *sfe2= NULL;
char *disk_path= NULL, *img_path= NULL, *link_target= NULL;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2019.08.13.160439"
#define Xorriso_timestamP "2019.08.13.161913"