Forgot to free a bvhtree with previous commit.

This commit is contained in:
Howard Trickey 2021-02-07 17:41:03 -05:00
parent 6f63417b50
commit 0376b2f566
1 changed files with 1 additions and 0 deletions

View File

@ -2584,6 +2584,7 @@ static IMesh raycast_boolean(const IMesh &tm,
}
}
}
BLI_bvhtree_free(tree);
ans.set_faces(out_faces);
return ans;
}