~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/client.cc

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
void plugin::Client::store(const char *from)
79
79
{
80
 
  if (from == NULL)
81
 
    return store();
82
 
 
83
 
  return store(from, strlen(from));
 
80
  return from ? store(from, strlen(from)) : store();
84
81
}
85
82
 
86
83