Bug fix: Command -truncate_overwritable on ISO image without MD5 caused double free of memory

This commit is contained in:
2024-04-27 18:53:40 +02:00
parent 2af1e90639
commit a26df9c49f
3 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@
#define Xorriso_free_meM(pt) { \
if(pt != NULL) \
free((char *) pt); \
pt= NULL; \
}