~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_func.cc

MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
      if (!(args=(Item**) thd->alloc(sizeof(Item*)*arg_count)))
99
99
        return;
100
100
    }
101
 
    memcpy((char*) args, (char*) item->args, sizeof(Item*)*arg_count);
 
101
    memcpy(args, item->args, sizeof(Item*)*arg_count);
102
102
  }
103
103
}
104
104