Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e40c9b0a
Commit
e40c9b0a
authored
Jun 05, 1999
by
Guy Albertelli
Committed by
Alexandre Julliard
Jun 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct search order in SearchPath for Win 3.1/95/98. Still broken for NT.
parent
a27807dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
directory.c
files/directory.c
+4
-4
No files found.
files/directory.c
View file @
e40c9b0a
...
...
@@ -577,14 +577,14 @@ DWORD DIR_SearchPath( LPCSTR path, LPCSTR name, LPCSTR ext,
if
(
DOSFS_GetFullName
(
name
,
TRUE
,
full_name
))
goto
done
;
/* Try the Windows directory */
/* Try the Windows
system
directory */
if
(
DIR_TryPath
(
&
DIR_
Windows
,
name
,
full_name
))
if
(
DIR_TryPath
(
&
DIR_
System
,
name
,
full_name
))
goto
done
;
/* Try the Windows
system
directory */
/* Try the Windows directory */
if
(
DIR_TryPath
(
&
DIR_
System
,
name
,
full_name
))
if
(
DIR_TryPath
(
&
DIR_
Windows
,
name
,
full_name
))
goto
done
;
/* Try the path of the current executable (for Win16 search order) */
...
...
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