summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-14 17:11:39 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-14 17:11:39 +0000
commit17c33199584fefba4b244f00bbbfc280ec5a65b9 (patch)
treeb7193754b13e9eafa95af0c11fea3ed17fea49fd /st.c
parentd024c9f5de2695bef7219f8211d3a0bc615d808f (diff)
* st.c (malloc): use xmalloc/xcalloc instead of plain
malloc/calloc, to detect memory allocation failure. see <http://www.nongnu.org/failmalloc/>. * gc.c (rb_memerror): should not raise nomem_error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/st.c b/st.c
index c6f0c2faf3..ced1f9196a 100644
--- a/st.c
+++ b/st.c
@@ -48,6 +48,11 @@ static struct st_hash_type type_strhash = {
static void rehash(st_table *);
+#ifdef RUBY
+#define malloc xmalloc
+#define calloc xcalloc
+#endif
+
#define alloc(type) (type*)malloc((unsigned)sizeof(type))
#define Calloc(n,s) (char*)calloc((n),(s))