Skip to content
Snippets Groups Projects
Commit 51dbf814 authored by Martin Killenberg's avatar Martin Killenberg
Browse files

fixed null pointer access in FeedingFanOut. All tests working again

parent b49a9990
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,12 @@ namespace ChimeraTK {
// interrupt the input and all slaves
virtual void interrupt(){
impl->interrupt();
for (auto & slave: slaves) slave->interrupt();
if (impl){
impl->interrupt();
}
for (auto & slave: slaves){
slave->interrupt();
}
}
protected:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment