-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash on revolved sketch change #468
Comments
Does not crash for me with the version I attached here: |
@rpavlik I tried several revisions in an attempt to narrow this down: 13820bf Bug exists. Crash on modify sketch. b284e80 can not revolve the rectangle - it crashes. 533ca61 can not revolve the rectangle - it crashes. 9fd09dd can not revolve the rectangle - it crashes. 0bfbbe2 can not revolve the rectangle - it crashes. 482f0e8 build error 1b97a00 build error b5f36a4 build errors 86f20cc build error The 97c8cb7 commit prior to that by @whitequark works fine. Most of the commits in that series don't build on my Fedora box, and then a couple have the seemingly worse bug where the initial revolve in the bug report crashes. When that finally got fixed, the bug reported here is present. |
Has anyone else reproduced this crash? It doesn't happen with Lathe or Helix - which is strange because Helix is mostly the same as Revolve. It happens if I disable the mesh for the group. It happens if I modify Revolve to copy entities the same was as Helix. But it doesn't happen if I comment out the copying of Revolve entities in Group::Generate. |
This sounds a bit like the bug I fixed shortly after that commit series. (the revert) Here's that commit series fixed to actually build each commit (oops) https://github.com/rpavlik/solvespace/tree/asan-bad (note that in that commit, I get a crash at the revolve stage.) I can reproduce this in the latest master on Debian. |
Hmm, and if I build and run with sanitizers (and then have it set to not halt on error) I actually get a crash at the revolve again, with a "use after free"
I also get the crash if I try Helix.
And, while the ReserveMore function is a bit more raw memory management than I usually enjoy, I don't particularly see how it could fail to work in such a way as to not update things, unless there was maybe a shallow copy performed? |
Ah, got it. So CopyEntity can invalidate pointers into lists because it may force a re-allocation. Thus, this access thru a pointer (among presumably others) is unsafe. https://github.com/solvespace/solvespace/blob/master/src/group.cpp#L582 Re-defining |
I just tried commenting out that check (it's redundant due to the one outside the loop) and it still crashed. Or did you make changes somewhere else? |
well, the subsequent uses of e would also trigger it. PR incoming in a moment |
Fixed in d514a26. |
System information
Recent master
Operating system: Fedora 30
Expected behavior
File->New
Create a rectangle to the right of the origin.
Select the vertical axis and the origin.
Shift->V to revolve the rectangle
Select the sketch group in the text window
Select a corner of the rectangle and Shift->A to round the corner.
What should have happened?
The corner should be rounded
Going back to the revolved group the edge should be rounded.
Actual behavior
What actually happened?
It crashed when trying to round the corner on the sketch.
Sometimes it's the first corner, sometimes it's the opposite corner.
Additional information
/solvespace/src/dsc.h, line 425, function FindById:
Assertion failed: t != NULL.
The text was updated successfully, but these errors were encountered: