Bug fix: Freshly cloned data files from imported image were not marked as

imported
This commit is contained in:
Thomas Schmitt 2022-10-27 17:37:58 +02:00
parent 71772baab7
commit acb4bd143c
1 changed files with 2 additions and 0 deletions

View File

@ -1453,6 +1453,8 @@ int iso_tree_clone_file(IsoFile *old_file,
if (ret < 0)
goto ex;
new_stream = NULL; /* now owned by new_file */
new_file->from_old_session = old_file->from_old_session;
new_file->explicit_weight = old_file->explicit_weight;
new_file->sort_weight = old_file->sort_weight;
*new_node = (IsoNode *) new_file;
ret = ISO_SUCCESS;