New -as mkisofs options -jigdo-* and -md5-list as of genisoimage

This commit is contained in:
2010-09-29 09:24:20 +00:00
parent ea0b38d44c
commit c35834e0c1
13 changed files with 239 additions and 5 deletions

View File

@ -25,6 +25,11 @@
#include <sys/time.h>
#include <time.h>
#include <errno.h>
#include <stdint.h>
#ifdef Xorriso_with_libjtE
#include <libjte/libjte.h>
#endif
#include "xorriso.h"
#include "xorriso_private.h"
@ -215,6 +220,11 @@ int Xorriso_new(struct XorrisO ** xorriso,char *progname, int flag)
m->vol_expiration_time= 0;
m->vol_effective_time= 0;
m->vol_uuid[0]= 0;
#ifdef Xorriso_with_libjtE
m->libjte_handle= NULL;
#endif
m->loaded_boot_bin_lba= 0;
m->loaded_boot_cat_path[0]= 0;
m->allow_graft_points= 0;
@ -417,6 +427,11 @@ int Xorriso_destroy(struct XorrisO **xorriso, int flag)
Xorriso_destroy_hln_array(m, 0);
Xorriso_destroy_di_array(m, 0);
#ifdef Xorriso_with_libjtE
if(m->libjte_handle)
libjte_destroy(&(m->libjte_handle));
#endif
Xorriso_detach_libraries(m, flag&1);
free((char *) m);