~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_realloc.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:
1
 
/* Copyright (C) 2000 MySQL AB
2
 
 
3
 
   This program is free software; you can redistribute it and/or modify
4
 
   it under the terms of the GNU General Public License as published by
5
 
   the Free Software Foundation; version 2 of the License.
6
 
 
7
 
   This program is distributed in the hope that it will be useful,
8
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
   GNU General Public License for more details.
11
 
 
12
 
   You should have received a copy of the GNU General Public License
13
 
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
 
 
16
 
#include "mysys_priv.h"
17
 
#include "mysys_err.h"
18
 
#include <stdlib.h>
19
 
 
20
 
        /* My memory re allocator */
21
 
 
22
 
/**
23
 
   @brief wrapper around realloc()
24
 
 
25
 
   @param  oldpoint        pointer to currently allocated area
26
 
   @param  size            new size requested, must be >0
27
 
   @param  my_flags        flags
28
 
 
29
 
   @note if size==0 realloc() may return NULL; my_realloc() treats this as an
30
 
   error which is not the intention of realloc()
31
 
*/
32
 
void* my_realloc(void* oldpoint, size_t size, myf my_flags)
33
 
{
34
 
  void *point;
35
 
 
36
 
  assert(size > 0);
37
 
  if (!oldpoint && (my_flags & MY_ALLOW_ZERO_PTR))
38
 
    return(my_malloc(size,my_flags));
39
 
#ifdef USE_HALLOC
40
 
  if (!(point = malloc(size)))
41
 
  {
42
 
    if (my_flags & MY_FREE_ON_ERROR)
43
 
      free(oldpoint);
44
 
    if (my_flags & MY_HOLD_ON_ERROR)
45
 
      return(oldpoint);
46
 
    my_errno=errno;
47
 
    if (my_flags & MY_FAE+MY_WME)
48
 
      my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG),size);
49
 
  }
50
 
  else
51
 
  {
52
 
    memcpy(point,oldpoint,size);
53
 
    free(oldpoint);
54
 
  }
55
 
#else
56
 
  if ((point= (unsigned char*) realloc(oldpoint,size)) == NULL)
57
 
  {
58
 
    if (my_flags & MY_FREE_ON_ERROR)
59
 
      free(oldpoint);
60
 
    if (my_flags & MY_HOLD_ON_ERROR)
61
 
      return(oldpoint);
62
 
    my_errno=errno;
63
 
    if (my_flags & (MY_FAE+MY_WME))
64
 
      my_error(EE_OUTOFMEMORY, MYF(ME_BELL+ME_WAITTANG), size);
65
 
  }
66
 
#endif
67
 
  return(point);
68
 
} /* my_realloc */