~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replicator.cc

  • Committer: Eric Herman
  • Date: 2008-12-07 10:46:19 UTC
  • mto: (656.1.14 devel)
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: eric@mysql.com-20081207104619-x1oj8gv48r0esnw5
fix uninitialied variable warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
static bool replicator_session_iterate (Session *session, plugin_ref plugin, void *)
75
75
{
76
76
  replicator_t *repl= plugin_data(plugin, replicator_t *);
77
 
  void *session_data;
 
77
  void *session_data= NULL;
78
78
 
79
79
  /* call this loaded replicator plugin's replicator_func1 function pointer */
80
80
  if (repl && repl->session_init)