Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Lenard Nagy
titan.core
Commits
9509ed5b
Commit
9509ed5b
authored
Jan 26, 2021
by
Adam Knapp
Committed by
Gerrit Code Review
Jan 26, 2021
Browse files
Merge "Fixed segmentation fault caused by fix of bug 568592"
parents
0e5c5781
0de29470
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/Quadruple.cc
View file @
9509ed5b
...
...
@@ -431,7 +431,9 @@ void QuadSet::add(QuadInterval* interval) {
if
(
it
==
set
)
set
=
it
->
next
;
quadset_node_t
*
p
=
it
;
it_old
->
next
=
it
->
next
;
if
(
it_old
!=
0
)
{
it_old
->
next
=
it
->
next
;
}
it
=
it
->
next
;
delete
p
;
continue
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment