From 985d1b9ec42e89e39aafadb8ffe68b0b877a7f93 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 12 Feb 2020 11:53:51 +0900 Subject: Fixed a potential memory leak `rb_str_new_cstr` can raise a `NoMemoryError`. --- process.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index 51c131eff8..ec3f5bf15e 100644 --- a/process.c +++ b/process.c @@ -97,6 +97,7 @@ int initgroups(const char *, rb_gid_t); #include "hrtime.h" #include "internal.h" #include "internal/bits.h" +#include "internal/dir.h" #include "internal/error.h" #include "internal/eval.h" #include "internal/hash.h" @@ -3493,10 +3494,8 @@ rb_execarg_run_options(const struct rb_execarg *eargp, struct rb_execarg *sargp, if (eargp->chdir_given) { if (sargp) { - char *cwd = ruby_getcwd(); sargp->chdir_given = 1; - sargp->chdir_dir = hide_obj(rb_str_new2(cwd)); - xfree(cwd); + sargp->chdir_dir = hide_obj(rb_dir_getwd_ospath()); } if (chdir(RSTRING_PTR(eargp->chdir_dir)) == -1) { /* async-signal-safe */ ERRMSG("chdir"); -- cgit v1.2.3