Updating sorted link array before usage after image manipulations

This commit is contained in:
2009-07-25 18:18:05 +00:00
parent 0136c7bab9
commit 2606a34ba8
5 changed files with 193 additions and 44 deletions

View File

@@ -107,7 +107,7 @@ struct XorrisO { /* the global context of xorriso */
bit3= with update:
Do not try to detect hardlink splits and joinings.
bit4= with extract:
Do not automatically create hln arrays
Do not create or use hln arrays if sort_lba_on
*/
int do_joliet;
@@ -403,6 +403,7 @@ struct XorrisO { /* the global context of xorriso */
int hln_count;
void **hln_array;
void **hln_targets;
int hln_change_pending; /* whether a change was made since hln creation */
/* >>> this should count all temp_mem and thus change its name */
off_t node_targets_availmem;
@@ -432,6 +433,8 @@ struct XorrisO { /* the global context of xorriso */
};
int Xorriso_set_change_pending(struct XorrisO *xorriso, int flag);
int Xorriso_prepare_regex(struct XorrisO *xorriso, char *adr, int flag);
int Xorriso_result(struct XorrisO *xorriso, int flag);