~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/registry.cc

  • Committer: Monty Taylor
  • Date: 2011-01-17 18:16:53 UTC
  • mto: (2114.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mordred@inaugust.com-20110117181653-yye8s665gqhgygy0
Re-purpose the old plugin sysvar slot in the struct to be a depends list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
  map_iter= module_registry_.find(name);
97
97
  if (map_iter != module_registry_.end())
98
98
    return (*map_iter).second;
99
 
  return(0);
 
99
  return NULL;
100
100
}
101
101
 
102
102
void module::Registry::add(module::Module *handle)