Skip to content

Commit

Permalink
Fixed an error that causes magic to segfault when doing "def write"
Browse files Browse the repository at this point in the history
on a layout that is caused by either having no .ext file, having
labels attached to space, or possibly both.
  • Loading branch information
RTimothyEdwards committed Sep 25, 2023
1 parent f1e60fe commit b244d45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.3.432
8.3.433
2 changes: 1 addition & 1 deletion extflat/EFvisit.c
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ EFVisitNodes(nodeProc, cdata)
int res;

for (node = (EFNode *) efNodeList.efnode_next;
node != &efNodeList;
node && (node != &efNodeList);
node = (EFNode *) node->efnode_next)
{
res = EFNodeResist(node);
Expand Down

0 comments on commit b244d45

Please sign in to comment.