Skip to content

Commit

Permalink
Merge pull request #798 from zannads/dev-netadjlist_fix
Browse files Browse the repository at this point in the history
Fix Issue 789- PR 791
  • Loading branch information
LRossman authored Jun 5, 2024
2 parents c131c4c + c79f125 commit 109a93f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hydraul.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void closehyd(Project *pr)
{
freesparse(pr);
freematrix(pr);
freeadjlists(pr);
freeadjlists(&pr->network);
}


Expand Down
2 changes: 1 addition & 1 deletion src/quality.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ int closequal(Project *pr)
FREE(qual->FlowDir);
FREE(qual->SortedNodes);
}
freeadjlists(pr);
freeadjlists(&pr->network);
return errcode;
}

Expand Down

0 comments on commit 109a93f

Please sign in to comment.