~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/loader.cc

Added support for the global list of plugin::Plugin objects to slot::Function

Show diffs side-by-side

added added

removed removed

Lines of Context:
540
540
{
541
541
  assert(plugin->isInited == false);
542
542
 
 
543
  registry.setCurrentHandle(plugin);
543
544
  if (plugin->getManifest().init)
544
545
  {
545
546
    if (plugin->getManifest().init(registry))
550
551
      return true;
551
552
    }
552
553
  }
 
554
  registry.clearCurrentHandle();
553
555
  plugin->isInited= true;
554
556
 
555
557