CTK icon indicating copy to clipboard operation
CTK copied to clipboard

ctkPluginFrameworkPrivate: crash on deactivate

Open Cynede opened this issue 8 years ago • 0 comments

on application close in shutdown0 with wasActive flag in deactivate(this->pluginContext.data()); I'm getting SIGSEGV (on Linux)

call stack points on

bool ctkPluginContext::ungetService(const ctkServiceReference& reference)
{
  Q_D(ctkPluginContext);
  d->isPluginContextValid();
  ctkServiceReference ref = reference;
  return ref.d_func()->ungetService(d->plugin->q_func(), true); // <-- this
}

inside some weak pointer access there on closing some system service

Cynede avatar Oct 16 '17 13:10 Cynede