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
8ee01679
Commit
8ee01679
authored
May 18, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a couple of warnings.
parent
05d658d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
msc.c
dlls/dbghelp/msc.c
+2
-2
No files found.
dlls/dbghelp/msc.c
View file @
8ee01679
...
...
@@ -1765,7 +1765,7 @@ static BOOL CALLBACK pdb_match(char* file, void* user)
{
/* accept first file that exists */
HANDLE
h
=
CreateFileA
(
file
,
GENERIC_READ
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
TRACE
(
"match with %s returns %
x
\n
"
,
file
,
h
);
TRACE
(
"match with %s returns %
p
\n
"
,
file
,
h
);
if
(
INVALID_HANDLE_VALUE
!=
h
)
{
CloseHandle
(
h
);
return
FALSE
;
...
...
@@ -1787,7 +1787,7 @@ static HANDLE open_pdb_file(const struct process* pcs, const char* filename)
{
h
=
CreateFileA
(
dbg_file_path
,
GENERIC_READ
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
TRACE
(
"with %s returns %
x
\n
"
,
dbg_file_path
,
h
);
TRACE
(
"with %s returns %
p
\n
"
,
dbg_file_path
,
h
);
}
return
(
h
==
INVALID_HANDLE_VALUE
)
?
NULL
:
h
;
}
...
...
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