Skip to content

Commit a18be39

Browse files
committedMar 1, 2025
makefs: Initialize cd9660 inode map only once
Error introduced during a refactoring; cd9660_susp_initialize calls itself recursively. Sponsred by: The FreeBSD Foundation Fixes: 35a2e286157a ("makefs: Record inode for all entries in mtree mode")
1 parent 7ee310c commit a18be39

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed
 

‎usr.sbin/makefs/cd9660/iso9660_rrip.c

+13-7
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ cd9660_susp_initialize(iso9660_disk *diskStructure, cd9660node *node,
7070
if (node->dot_dot_record != 0)
7171
TAILQ_INIT(&(node->dot_dot_record->head));
7272

73-
RB_INIT(&diskStructure->rr_inode_map);
74-
diskStructure->rr_inode_next = 1;
73+
if (diskStructure->rr_inode_next == 0) {
74+
RB_INIT(&diskStructure->rr_inode_map);
75+
diskStructure->rr_inode_next = 1;
76+
}
7577

7678
/* SUSP specific entries here */
7779
if ((r = cd9660_susp_initialize_node(diskStructure, node)) < 0)
@@ -121,11 +123,15 @@ cd9660_susp_finalize(iso9660_disk *diskStructure, cd9660node *node)
121123
if ((r = cd9660_susp_finalize(diskStructure, temp)) < 0)
122124
return r;
123125
}
124-
RB_FOREACH_SAFE(mapnode, inode_map_tree,
125-
&(diskStructure->rr_inode_map), mapnodetmp) {
126-
RB_REMOVE(inode_map_tree, &(diskStructure->rr_inode_map),
127-
mapnode);
128-
free(mapnode);
126+
127+
if (diskStructure->rr_inode_next != 0) {
128+
RB_FOREACH_SAFE(mapnode, inode_map_tree,
129+
&(diskStructure->rr_inode_map), mapnodetmp) {
130+
RB_REMOVE(inode_map_tree,
131+
&(diskStructure->rr_inode_map), mapnode);
132+
free(mapnode);
133+
}
134+
diskStructure->rr_inode_next = 0;
129135
}
130136
return 1;
131137
}

0 commit comments

Comments
 (0)