summaryrefslogtreecommitdiffhomepage
path: root/test
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 /test
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 'test')
-rw-r--r--test/driver.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/driver.c b/test/driver.c
index 4651d75fc..6b42d025b 100644
--- a/test/driver.c
+++ b/test/driver.c
@@ -36,6 +36,11 @@ main(void)
/* new interpreter instance */
mrb = mrb_open();
+ if (mrb == NULL) {
+ fprintf(stderr, "Invalid mrb_state, exiting test driver");
+ return EXIT_FAILURE;
+ }
+
mrb_init_mrbtest(mrb);
parser = mrb_parse_nstring(mrb, prog, strlen(prog));