Commit 0486c48b authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

do not use strdup(3) that use malloc(3) inside; should use mrb_malloc()

parent c6f5f637
......@@ -83,7 +83,11 @@ parse_args(mrb_state *mrb, int argc, char **argv, struct _args *args)
}
else if (cmdline) {
if (!args->cmdline) {
args->cmdline = strdup(argv[0]);
char *buf;
buf = mrb_malloc(mrb, strlen(argv[0])+1);
strcpy(buf, argv[0]);
args->cmdline = buf;
}
else {
args->cmdline = mrb_realloc(mrb, args->cmdline, strlen(args->cmdline)+strlen(argv[0])+2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment