~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/charset.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-29 18:32:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2362.
  • Revision ID: olafvdspek@gmail.com-20110629183225-bxa0qk9wqg0w4rng
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
    return NULL;
255
255
  if (not (cs->state & MY_CS_READY))
256
256
  {
257
 
    if (cs->coll->init && cs->coll->init(cs, cs_alloc))
 
257
    if (cs->coll->init && cs->coll->init(*cs, cs_alloc))
258
258
      return NULL;
259
259
    cs->state|= MY_CS_READY;
260
260
  }