Bug fix: -check_media use=outdev sector_map= stored TOC of input drive

This commit is contained in:
Thomas Schmitt 2013-02-26 10:33:01 +00:00
parent eee7c453f2
commit 399d3411e9
2 changed files with 6 additions and 4 deletions

View File

@ -769,7 +769,8 @@ int Xorriso_may_burn(struct XorrisO *xorriso, int flag)
}
/* @param flag bit2=do not try to read ISO heads
/* @param flag bit1=report about output drive rather than input drive
bit2=do not try to read ISO heads
*/
int Xorriso_toc_to_string(struct XorrisO *xorriso, char **toc_text, int flag)
{
@ -780,7 +781,7 @@ int Xorriso_toc_to_string(struct XorrisO *xorriso, char **toc_text, int flag)
ret= Xorriso_push_outlists(xorriso, &stack_handle, 1);
if(ret <= 0)
goto ex;
toc_ret= Xorriso_toc(xorriso, flag & 4);
toc_ret= Xorriso_toc(xorriso, flag & (2 | 4));
ret= Xorriso_pull_outlists(xorriso, stack_handle, &results, &infos, 0);
if(ret <= 0)
goto ex;
@ -2905,7 +2906,8 @@ int Xorriso_check_media(struct XorrisO *xorriso, struct SpotlisT **spotlist,
goto ex;
}
}
Xorriso_toc_to_string(xorriso, &toc_info, 4 * !job->map_with_volid);
Xorriso_toc_to_string(xorriso, &toc_info,
(2 * !!job->use_dev) | (4 * !job->map_with_volid));
}
ret= Xorriso_open_job_data_to(xorriso, job, 0);
if(ret <= 0)

View File

@ -1 +1 @@
#define Xorriso_timestamP "2013.02.26.082331"
#define Xorriso_timestamP "2013.02.26.103233"