summaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-27 00:15:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-27 00:15:31 +0000
commit999c9535ee6a1f52f94d1022f69b4f58884e43d7 (patch)
tree3871a01bca2261f74c4ae624b00889bd5d3a5c81 /win32
parent4997a5bb1853770058b11c90adae9315054a7941 (diff)
downloadruby-999c9535ee6a1f52f94d1022f69b4f58884e43d7.tar.gz
ruby-999c9535ee6a1f52f94d1022f69b4f58884e43d7.tar.xz
ruby-999c9535ee6a1f52f94d1022f69b4f58884e43d7.zip
* dln.h (dln_find_exe, dln_find_file): deprecated, use reentrant
versions instead. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18230 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index f6233e4bf..5c525d574 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -928,6 +928,7 @@ CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
const char *shell;
struct ChildRecord *child;
char *p = NULL;
+ char fbuf[MAXPATHLEN];
if (!cmd && !prog) {
errno = EFAULT;
@@ -975,7 +976,7 @@ CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
dwCreationFlags = (NORMAL_PRIORITY_CLASS);
if (prog) {
- if (!(p = dln_find_exe(prog, NULL))) {
+ if (!(p = dln_find_exe_r(prog, NULL, fbuf, sizeof(fbuf)))) {
shell = prog;
}
}