diff options
author | unknown <jimw@mysql.com> | 2005-06-24 13:41:33 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-06-24 13:41:33 -0700 |
commit | f56dd2a0fa24b154aa71307e12283e43c7ff0914 (patch) | |
tree | f29e416cf6a91425d2edb7c5e7cca1dde42543f6 /strings/conf_to_src.c | |
parent | d34e2ccb3ea51811552f3e87ad68ee8673804da1 (diff) | |
download | mariadb-git-f56dd2a0fa24b154aa71307e12283e43c7ff0914.tar.gz |
Add my_str_malloc and _free function pointers to strings library
which will by default exit(1) if malloc() fails, but can be set
to do something else by the calling program does, which mysqld
does to use my_malloc(..., MYF(MY_FAE)) instead. Also checks
allocation in conf_to_src utility program. (Bug #7003)
strings/conf_to_src.c:
if malloc() fails, just abort
VC++Files/client/mysqlclient.dsp:
Add str_alloc.c
VC++Files/client/mysqlclient_ia64.dsp:
Add str_alloc.c
VC++Files/libmysql/libmysql.dsp:
Add str_alloc.c
VC++Files/libmysql/libmysql_ia64.dsp:
Add str_alloc.c
VC++Files/libmysqld/libmysqld.dsp:
Add str_alloc.c
VC++Files/libmysqld/libmysqld_ia64.dsp:
Add str_alloc.c
VC++Files/strings/backup/strings.dsp:
Add str_alloc.c
VC++Files/strings/noMASM/strings.dsp:
Add str_alloc.c
VC++Files/strings/strings.dsp:
Add str_alloc.c
VC++Files/strings/strings_ia64.dsp:
Add str_alloc.c
include/m_string.h:
Add my_str_malloc/free function pointers.
libmysql/Makefile.shared:
Add str_alloc.lo
sql/mysqld.cc:
Reassign my_str_malloc/free pointers so they use my_malloc/free
strings/Makefile.am:
Add str_alloc.c
strings/ctype-tis620.c:
Use my_str_malloc/free
Diffstat (limited to 'strings/conf_to_src.c')
-rw-r--r-- | strings/conf_to_src.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/strings/conf_to_src.c b/strings/conf_to_src.c index d5ffa15ee0c..5a6adb398da 100644 --- a/strings/conf_to_src.c +++ b/strings/conf_to_src.c @@ -75,6 +75,8 @@ static int get_charset_number(const char *charset_name) char *mdup(const char *src, uint len) { char *dst=(char*)malloc(len); + if (!dst) + exit(1); memcpy(dst,src,len); return dst; } |