diff options
| author | takahashim <[email protected]> | 2012-06-02 01:14:45 +0900 |
|---|---|---|
| committer | takahashim <[email protected]> | 2012-06-02 01:14:45 +0900 |
| commit | 49df2179578c34caefbe693a0eb74facb3ff9679 (patch) | |
| tree | f792b75937dc782b176beb74ff6555b9154b9cdc /src | |
| parent | cd48737e118bcc1ed58e9710b9641e5a9e457179 (diff) | |
| download | mruby-49df2179578c34caefbe693a0eb74facb3ff9679.tar.gz mruby-49df2179578c34caefbe693a0eb74facb3ff9679.zip | |
use mrb_malloc instead of malloc
Diffstat (limited to 'src')
| -rw-r--r-- | src/struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/struct.c b/src/struct.c index d06124b50..fbe018930 100644 --- a/src/struct.c +++ b/src/struct.c @@ -416,7 +416,7 @@ mrb_struct_initialize_withArg(mrb_state *mrb, int argc, mrb_value *argv, mrb_val mrb_raise(mrb, E_ARGUMENT_ERROR, "struct size differs"); } st = RSTRUCT(self); - st->ptr = malloc(sizeof(mrb_value)*argc); + st->ptr = mrb_malloc(mrb, sizeof(mrb_value)*argc); st->len = n; memcpy(st->ptr, argv, sizeof(mrb_value)*argc); //if (n > argc) { |
