~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_error.cc

  • Committer: Monty Taylor
  • Date: 2008-12-07 23:42:51 UTC
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: monty@inaugust.com-20081207234251-yxtbg06jpylwej29
Finally removed all of the my_malloc stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
  struct my_err_head **search_meh_pp;
164
164
 
165
165
  /* Allocate a new header structure. */
166
 
  if (! (meh_p= (struct my_err_head*) my_malloc(sizeof(struct my_err_head),
167
 
                                                MYF(MY_WME))))
 
166
  if (! (meh_p= (struct my_err_head*) malloc(sizeof(struct my_err_head))))
168
167
    return 1;
169
168
  meh_p->meh_errmsgs= errmsgs;
170
169
  meh_p->meh_first= first;