aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-08 17:52:38 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-08 17:52:38 +0000
commitb3935f179b3a5668320eab59a07e4de7b747546d (patch)
tree24d96826c2e0f47497f8f45df33121c17b5bc6b7 /util.c
parent6db71fb11af4e3f1a79678f6dec6b2c10d012eff (diff)
downloadruby-b3935f179b3a5668320eab59a07e4de7b747546d.tar.gz
* gc.c (rb_gc_unprotect_logging): throw rb_memerror when it cannot
allocate memory. This is pointed out by Facebook's Infer. * gc.c (gc_prof_setup_new_record): ditto. * regparse.c (parse_regexp): ditto. * util.c (MALLOC): use xmalloc and xfree like above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 95ac2b09b5..5c89eb6947 100644
--- a/util.c
+++ b/util.c
@@ -748,12 +748,12 @@ ruby_getcwd(void)
#ifdef MALLOC
extern void *MALLOC(size_t);
#else
-#define MALLOC malloc
+#define MALLOC xmalloc
#endif
#ifdef FREE
extern void FREE(void*);
#else
-#define FREE free
+#define FREE xfree
#endif
#ifndef Omit_Private_Memory