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
7da1d6d1
Commit
7da1d6d1
authored
Oct 28, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Cast-qual warnings fix.
parent
5a2227f8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
path.c
dlls/dbghelp/path.c
+4
-7
No files found.
dlls/dbghelp/path.c
View file @
7da1d6d1
...
...
@@ -349,6 +349,7 @@ BOOL WINAPI SymFindFileInPath(HANDLE hProcess, PCSTR inSearchPath, PCSTR full_pa
struct
process
*
pcs
=
process_find_by_handle
(
hProcess
);
char
tmp
[
MAX_PATH
];
char
*
ptr
;
char
*
buf
=
NULL
;
const
char
*
filename
;
const
char
*
searchPath
=
inSearchPath
;
...
...
@@ -360,7 +361,6 @@ BOOL WINAPI SymFindFileInPath(HANDLE hProcess, PCSTR inSearchPath, PCSTR full_pa
if
(
!
searchPath
)
{
unsigned
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
pcs
->
search_path
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
char
*
buf
;
searchPath
=
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
if
(
!
searchPath
)
return
FALSE
;
...
...
@@ -381,8 +381,7 @@ BOOL WINAPI SymFindFileInPath(HANDLE hProcess, PCSTR inSearchPath, PCSTR full_pa
if
(
sffip_cb
(
full_path
,
&
s
))
{
strcpy
(
buffer
,
full_path
);
if
(
searchPath
!=
inSearchPath
)
HeapFree
(
GetProcessHeap
(),
0
,
(
char
*
)
searchPath
);
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
return
TRUE
;
}
...
...
@@ -403,12 +402,10 @@ BOOL WINAPI SymFindFileInPath(HANDLE hProcess, PCSTR inSearchPath, PCSTR full_pa
if
(
do_search
(
filename
,
tmp
,
FALSE
,
sffip_cb
,
&
s
))
{
strcpy
(
buffer
,
tmp
);
if
(
searchPath
!=
inSearchPath
)
HeapFree
(
GetProcessHeap
(),
0
,
(
char
*
)
searchPath
);
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
return
TRUE
;
}
}
if
(
searchPath
!=
inSearchPath
)
HeapFree
(
GetProcessHeap
(),
0
,
(
char
*
)
searchPath
);
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
return
FALSE
;
}
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