Skip to content

Commit

Permalink
Fix htable cleanup (JuliaLang#44446)
Browse files Browse the repository at this point in the history
This htable was allocated conditionally, so the cleanup must be too.

Co-authored by: Jameson Nash <[email protected]>
  • Loading branch information
timholy committed Mar 4, 2022
1 parent 5db280d commit c3d7edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ static size_t queue_external_mis(jl_array_t *list)
}
}
}
htable_free(&visited);
}
htable_free(&visited);
return n;
}

Expand Down

0 comments on commit c3d7edc

Please sign in to comment.