Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
67b7b86d
Commit
67b7b86d
authored
Jan 14, 2013
by
Pierre PARUTTO
Committed by
Alexandre Duret-Lutz
Jan 14, 2013
Browse files
tgbaproduct: fix segfault
* src/tgba/tgbaproduct.cc (transition_annotation): Adapt down cast to new hierarchy.
parent
e4ecc2d4
Changes
1
Show whitespace changes
Inline
Side-by-side
src/tgba/tgbaproduct.cc
View file @
67b7b86d
...
...
@@ -465,8 +465,8 @@ namespace spot
std
::
string
tgba_product
::
transition_annotation
(
const
tgba_succ_iterator
*
t
)
const
{
const
tgba_succ_iterator_product
*
i
=
down_cast
<
const
tgba_succ_iterator_product
*>
(
t
);
const
tgba_succ_iterator_product
_common
*
i
=
down_cast
<
const
tgba_succ_iterator_product
_common
*>
(
t
);
assert
(
i
);
std
::
string
left
=
left_
->
transition_annotation
(
i
->
left_
);
std
::
string
right
=
right_
->
transition_annotation
(
i
->
right_
);
...
...
Write
Preview
Supports
Markdown
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