~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Brian Aker
  • Date: 2010-04-01 06:29:46 UTC
  • mfrom: (1411.6.1 fix549914)
  • Revision ID: brian@gaz-20100401062946-vuqk3zhxlfven6wu
Merge Zimin

Show diffs side-by-side

added added

removed removed

Lines of Context:
2617
2617
    return 0;
2618
2618
 
2619
2619
  if (drizzle_con_error(&con)[0])
2620
 
    return put_error(&con, result);
 
2620
  {
 
2621
    int ret = put_error(&con, result);
 
2622
    drizzle_result_free(result);
 
2623
    return ret;
 
2624
  }
2621
2625
  return 0;
2622
2626
}
2623
2627