~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_events/hello_events.cc

  • Committer: Lee Bieber
  • Date: 2010-10-22 16:47:38 UTC
  • mfrom: (1841.1.7 drizzle_pbms)
  • Revision ID: kalebral@gmail.com-20101022164738-vv8w22b8towpb307
Merge Barry - fix bug 657830: PBMS build failure in GCC 4.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 * This plugin is an example events plugin that just prints some info for
26
26
 * the events that it is tracking. 
27
27
 *  
28
 
set global hello_events_enable = ON;
29
 
set global hello_events_watch_databases = "x";   
30
 
set global hello_events_watch_tables = "x,y";
 
28
set global hello_events1_enable = ON;
 
29
set global hello_events1_watch_databases = "x";   
 
30
set global hello_events1_watch_tables = "x,y";
31
31
 
32
32
 */
33
33
 
190
190
HelloEvents::~HelloEvents()
191
191
{
192
192
  /* These are strdup'd in option processing */
193
 
  free(sysvar_table_list);
194
 
  free(sysvar_db_list);
 
193
  if (sysvar_table_list) {
 
194
        free(sysvar_table_list);
 
195
        sysvar_table_list = NULL;
 
196
  }
 
197
  
 
198
  if (sysvar_db_list) {
 
199
        free(sysvar_db_list);
 
200
        sysvar_db_list = NULL;
 
201
  }
 
202
  
195
203
}
196
204
 
197
205
//==================================