Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1b5a5513
Commit
1b5a5513
authored
Jan 29, 2020
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 29, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't duplicate _wsearchenv_s code in _wsearchenv.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f05549b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
58 deletions
+8
-58
dir.c
dlls/msvcrt/dir.c
+8
-58
No files found.
dlls/msvcrt/dir.c
View file @
1b5a5513
...
...
@@ -1734,64 +1734,6 @@ void CDECL MSVCRT__searchenv(const char* file, const char* env, char *buf)
}
/*********************************************************************
* _wsearchenv (MSVCRT.@)
*
* Unicode version of _searchenv
*/
void
CDECL
MSVCRT__wsearchenv
(
const
MSVCRT_wchar_t
*
file
,
const
MSVCRT_wchar_t
*
env
,
MSVCRT_wchar_t
*
buf
)
{
MSVCRT_wchar_t
*
envVal
,
*
penv
,
*
end
;
MSVCRT_wchar_t
path
[
MAX_PATH
];
MSVCRT_size_t
path_len
,
fname_len
=
strlenW
(
file
);
*
buf
=
'\0'
;
/* Try CWD first */
if
(
GetFileAttributesW
(
file
)
!=
INVALID_FILE_ATTRIBUTES
)
{
GetFullPathNameW
(
file
,
MAX_PATH
,
buf
,
NULL
);
return
;
}
/* Search given environment variable */
envVal
=
MSVCRT__wgetenv
(
env
);
if
(
!
envVal
)
{
msvcrt_set_errno
(
ERROR_FILE_NOT_FOUND
);
return
;
}
penv
=
envVal
;
TRACE
(
":searching for %s in paths %s
\n
"
,
debugstr_w
(
file
),
debugstr_w
(
envVal
));
for
(;
*
penv
;
penv
=
(
*
end
?
end
+
1
:
end
))
{
end
=
penv
;
while
(
*
end
&&
*
end
!=
';'
)
end
++
;
/* Find end of next path */
path_len
=
end
-
penv
;
if
(
!
path_len
||
path_len
>=
MAX_PATH
)
continue
;
memcpy
(
path
,
penv
,
path_len
*
sizeof
(
MSVCRT_wchar_t
));
if
(
path
[
path_len
-
1
]
!=
'/'
&&
path
[
path_len
-
1
]
!=
'\\'
)
path
[
path_len
++
]
=
'\\'
;
if
(
path_len
+
fname_len
>=
MAX_PATH
)
continue
;
memcpy
(
path
+
path_len
,
file
,
(
fname_len
+
1
)
*
sizeof
(
MSVCRT_wchar_t
));
TRACE
(
"Checking for file %s
\n
"
,
debugstr_w
(
path
));
if
(
GetFileAttributesW
(
path
)
!=
INVALID_FILE_ATTRIBUTES
)
{
memcpy
(
buf
,
path
,
(
path_len
+
fname_len
+
1
)
*
sizeof
(
MSVCRT_wchar_t
));
return
;
}
}
msvcrt_set_errno
(
ERROR_FILE_NOT_FOUND
);
return
;
}
/*********************************************************************
* _wsearchenv_s (MSVCRT.@)
*/
int
CDECL
MSVCRT__wsearchenv_s
(
const
MSVCRT_wchar_t
*
file
,
const
MSVCRT_wchar_t
*
env
,
...
...
@@ -1876,3 +1818,11 @@ int CDECL MSVCRT__wsearchenv_s(const MSVCRT_wchar_t* file, const MSVCRT_wchar_t*
*
MSVCRT__errno
()
=
MSVCRT_ENOENT
;
return
MSVCRT_ENOENT
;
}
/*********************************************************************
* _wsearchenv (MSVCRT.@)
*/
void
CDECL
MSVCRT__wsearchenv
(
const
MSVCRT_wchar_t
*
file
,
const
MSVCRT_wchar_t
*
env
,
MSVCRT_wchar_t
*
buf
)
{
MSVCRT__wsearchenv_s
(
file
,
env
,
buf
,
MAX_PATH
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment