~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/oldlibdrizzle/net_serv.cc

  • Committer: Brian Aker
  • Date: 2009-10-13 05:30:09 UTC
  • mfrom: (1166.4.3 bug-436685)
  • Revision ID: brian@gaz-20091013053009-kbi9i4249r36mhtp
Minor Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
526
526
    assert(pos);
527
527
    if ((long) (length= drizzleclient_vio_write(net->vio, pos, (size_t) (end-pos))) <= 0)
528
528
    {
529
 
     /**
530
 
       * We could end up here with net->vio == NULL
531
 
       * See LP bug#436685
532
 
       * If that is the case, we exit the while loop
533
 
       */
 
529
     /*
 
530
      * We could end up here with net->vio == NULL
 
531
      * See LP bug#436685
 
532
      * If that is the case, we exit the while loop
 
533
      */
534
534
      if (net->vio == NULL)
535
535
        break;
536
536