Closed memory leak with comparison of files

This commit is contained in:
Thomas Schmitt 2015-10-16 15:51:03 +00:00
parent 526494e8ce
commit 54ebdfe339
3 changed files with 6 additions and 2 deletions

View File

@ -669,6 +669,10 @@ ex:;
free(a2_acl);
if(d2_acl != NULL)
free(d2_acl);
if(attrlist1 != NULL)
free(attrlist1);
if(attrlist2 != NULL)
free(attrlist2);
Xorriso_free_meM(part_path);
Xorriso_free_meM(a);
return(ret);

View File

@ -1,7 +1,7 @@
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
Copyright 2007-2012 Thomas Schmitt, <scdbackup@gmx.net>
Copyright 2007-2015 Thomas Schmitt, <scdbackup@gmx.net>
Provided under GPL version 2 or later.

View File

@ -1 +1 @@
#define Xorriso_timestamP "2015.10.15.170642"
#define Xorriso_timestamP "2015.10.16.155137"