Skip to content
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

append! broken for MutableLinkedLists? #725

Closed
schrauf opened this issue Feb 13, 2021 · 0 comments · Fixed by #727
Closed

append! broken for MutableLinkedLists? #725

schrauf opened this issue Feb 13, 2021 · 0 comments · Fixed by #727

Comments

@schrauf
Copy link

schrauf commented Feb 13, 2021

Hi! I been having a few problems with the MutableLinkedList type, (infinite loops and segfaults).
I've tested up to version 18.9 and reduced the problems to this minimal example:

julia> using DataStructures
julia> l1 = MutableLinkedList{Int}(1:5...);
julia> l2 = MutableLinkedList{Int}(10:15...);
julia> append!(l1,l2);
julia> collect(l1)
ERROR: 
signal (11): Segmentation fault
in expression starting at none:0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant