Made Xorriso_path_from_lba() ready for long block adresses
This commit is contained in:
parent
458b0cb3de
commit
ec7ab520ba
@ -150,7 +150,7 @@ int Xorriso_record_boot_info(struct XorrisO *xorriso, int flag)
|
||||
Xorriso__file_start_lba((IsoNode *) bootimg_node,
|
||||
&(xorriso->loaded_boot_bin_lba), 0);
|
||||
if(bootcat_node != NULL)
|
||||
Xorriso_path_from_lba(xorriso, (IsoNode *) bootcat_node, 0,
|
||||
Xorriso_path_from_lba(xorriso, (IsoNode *) bootcat_node, (off_t) 0,
|
||||
xorriso->loaded_boot_cat_path, 0);
|
||||
return(1);
|
||||
}
|
||||
|
@ -459,7 +459,7 @@ ex:;
|
||||
*/
|
||||
/* @param flag bit0= use lba rather than node pointer
|
||||
*/
|
||||
int Xorriso_path_from_lba(struct XorrisO *xorriso, IsoNode *node, int lba,
|
||||
int Xorriso_path_from_lba(struct XorrisO *xorriso, IsoNode *node, off_t lba,
|
||||
char path[SfileadrL], int flag)
|
||||
{
|
||||
int ret;
|
||||
@ -477,7 +477,7 @@ int Xorriso_path_from_lba(struct XorrisO *xorriso, IsoNode *node, int lba,
|
||||
return(ret);
|
||||
}
|
||||
if(flag & 1)
|
||||
Findjob_set_lba_range(job, (off_t) lba, (off_t) 1, 0);
|
||||
Findjob_set_lba_range(job, lba, (off_t) 1, 0);
|
||||
else
|
||||
Findjob_set_wanted_node(job, (void *) node, 0);
|
||||
Findjob_set_action_found_path(job, 0);
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
||||
|
||||
Copyright 2007-2022 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
Copyright 2007-2024 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
|
||||
Provided under GPL version 2 or later.
|
||||
|
||||
@ -49,7 +49,7 @@ int Xorriso_node_is_valid(struct XorrisO *xorriso, IsoNode *in_node, int flag);
|
||||
int Xorriso_path_from_node(struct XorrisO *xorriso, IsoNode *in_node,
|
||||
char path[SfileadrL], int flag);
|
||||
|
||||
int Xorriso_path_from_lba(struct XorrisO *xorriso, IsoNode *node, int lba,
|
||||
int Xorriso_path_from_lba(struct XorrisO *xorriso, IsoNode *node, off_t lba,
|
||||
char path[SfileadrL], int flag);
|
||||
|
||||
int Xorriso_get_attr_value(struct XorrisO *xorriso, void *in_node, char *path,
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
||||
|
||||
Copyright 2007-2023 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
Copyright 2007-2024 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
|
||||
Provided under GPL version 2 or later.
|
||||
|
||||
@ -1376,8 +1376,8 @@ int Xorriso_write_session(struct XorrisO *xorriso, int flag)
|
||||
sprintf(xorriso->info_text, "Patching boot info table");
|
||||
Xorriso_msgs_submit(xorriso, 0, xorriso->info_text, 0, "NOTE", 0);
|
||||
|
||||
ret= Xorriso_path_from_lba(xorriso, NULL, xorriso->loaded_boot_bin_lba,
|
||||
sfe, 1);
|
||||
ret= Xorriso_path_from_lba(xorriso, NULL,
|
||||
(off_t) xorriso->loaded_boot_bin_lba, sfe, 1);
|
||||
if(ret < 0)
|
||||
goto ex;
|
||||
if(ret == 0) {
|
||||
|
@ -1 +1 @@
|
||||
#define Xorriso_timestamP "2024.03.21.084436"
|
||||
#define Xorriso_timestamP "2024.03.21.150655"
|
||||
|
Loading…
Reference in New Issue
Block a user