From 999c9535ee6a1f52f94d1022f69b4f58884e43d7 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 27 Jul 2008 00:15:31 +0000 Subject: * 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 --- win32/win32.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'win32') 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; } } -- cgit