~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dtoa.cc

  • Committer: Mark Atwood
  • Date: 2011-06-19 18:31:57 UTC
  • mfrom: (2318.6.8 refactor12)
  • Revision ID: me@mark.atwood.name-20110619183157-jg8823cpkobu7n6d
Tags: 2011.06.20
mergeĀ lp:~olafvdspek/drizzle/refactor12

Show diffs side-by-side

added added

removed removed

Lines of Context:
622
622
 
623
623
static Bigint *Balloc(int k)
624
624
{
625
 
  Bigint *rv;
626
 
 
627
 
  /* TODO: some malloc failure checking */
628
 
 
629
625
  int x= 1 << k;
630
 
  rv= (Bigint*) malloc(sizeof(Bigint));
 
626
  Bigint* rv= (Bigint*) malloc(sizeof(Bigint));
631
627
 
632
628
  rv->p.x= (ULong*)malloc(x * sizeof(ULong));
633
629