summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-06-03 09:41:32 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-06-03 09:41:32 -0700
commitd8f1e17ef6282b15c945f1feb5b75c36be96f20e (patch)
treee036ad5bf1629f748af8f3084ca8a15cccd07e19 /src/parse.y
parent0719f523048ecd6da1d28e4b2eba7794e419dd36 (diff)
parent2fff59dc8674ad6689acc5080463eede4c5bb2ab (diff)
downloadmruby-d8f1e17ef6282b15c945f1feb5b75c36be96f20e.tar.gz
mruby-d8f1e17ef6282b15c945f1feb5b75c36be96f20e.zip
Merge pull request #239 from thecodeshop/jf/mrb_open
guard mrb_open mem allocation and downstream usage
Diffstat (limited to 'src/parse.y')
-rw-r--r--src/parse.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parse.y b/src/parse.y
index eae9fb373..884290961 100644
--- a/src/parse.y
+++ b/src/parse.y
@@ -5518,6 +5518,11 @@ main()
mrb_state *mrb = mrb_open();
int n;
+ if (mrb == NULL) {
+ fprintf(stderr, "Invalid mrb_state, exiting parser test");
+ return EXIT_FAILURE;
+ }
+
n = mrb_compile_string(mrb, "\
def fib(n)\n\
if n<2\n\