Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAMP
campvis-public
Commits
c470e61c
Commit
c470e61c
authored
Dec 09, 2014
by
Declara Denis
Committed by
Christian Schulte zu Berge
Feb 18, 2015
Browse files
Fixed crash on deinit of OpenIgtLinkClient
parent
1a150165
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/openigtlink/processors/openigtlinkclient.cpp
View file @
c470e61c
...
...
@@ -83,9 +83,6 @@ namespace campvis {
OpenIGTLinkClient
::~
OpenIGTLinkClient
()
{
if
(
_receiverRunning
)
stopReceiver
();
if
(
_receiverThread
)
delete
_receiverThread
;
}
void
OpenIGTLinkClient
::
init
()
{
...
...
@@ -507,6 +504,7 @@ namespace campvis {
_receiverRunning
=
false
;
delete
_receiverThread
;
_receiverThread
=
nullptr
;
}
catch
(
std
::
exception
&
e
)
{
LERRORC
(
"CAMPVis.modules.base.MatrixProcessor"
,
"Caught exception during _thread.join: "
<<
e
.
what
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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