~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • 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:
228
228
    if (arg_length < Alloced_length)
229
229
    {
230
230
      char *new_ptr;
231
 
      if (!(new_ptr=(char*) my_realloc(Ptr,arg_length,MYF(0))))
 
231
      if (!(new_ptr=(char*) ::realloc(Ptr,arg_length)))
232
232
      {
233
233
        Alloced_length = 0;
234
234
        real_alloc(arg_length);