summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-07-08 19:40:17 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-07-08 19:40:17 -0700
commit8cef93d228ec5d2cb57b84cf0ae3945363080546 (patch)
tree1b9b689e93466c56e0badf7dbe373d7ce96d6867 /src/parse.y
parent78614b2391aec299d3be181ec14671d037bf67b1 (diff)
parent611cf71a10051d77a7bb8998d8a7c34e26b0b1b0 (diff)
downloadmruby-8cef93d228ec5d2cb57b84cf0ae3945363080546.tar.gz
mruby-8cef93d228ec5d2cb57b84cf0ae3945363080546.zip
Merge pull request #355 from monaka/pr-use-mrb_calloc
Use mrb_calloc if you want zero cleard buffers.
Diffstat (limited to 'src/parse.y')
-rw-r--r--src/parse.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parse.y b/src/parse.y
index af91f09b6..dd1738010 100644
--- a/src/parse.y
+++ b/src/parse.y
@@ -4792,8 +4792,7 @@ mrbc_context_new(mrb_state *mrb)
{
mrbc_context *c;
- c = mrb_malloc(mrb, sizeof(mrbc_context));
- memset(c, 0, sizeof(mrbc_context));
+ c = mrb_calloc(mrb, 1, sizeof(mrbc_context));
return c;
}