~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/library.cc

  • Committer: Brian Aker
  • Date: 2010-04-11 03:15:24 UTC
  • mfrom: (1458.1.3 build)
  • Revision ID: brian@gaz-20100411031524-iog9vu33ot8fppkf
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
plugin::Library::~Library()
45
45
{
 
46
  /**
 
47
   * @TODO: This breaks valgrind at the moment. 
46
48
  if (handle)
47
49
    dlclose(handle);
 
50
  */
48
51
}
49
52
 
50
53
plugin::Library *plugin::Library::loadLibrary(const string &plugin_name)