~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: Brian Aker
  • Date: 2010-11-16 20:38:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1938.
  • Revision ID: brian@tangent.org-20101116203833-csn581b7jwlkum0w
Finish change so that we use a shared_ptr for the session list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
     should be shutdown. */
353
353
  while ((client= plugin::Listen::getClient()) != NULL)
354
354
  {
355
 
    Session::Ptr session(new Session(client));
 
355
    Session::shared_ptr session(new Session(client));
356
356
 
357
357
    if (not session)
358
358
    {