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
8527f910
Commit
8527f910
authored
Jun 01, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Write-strings warning fix.
parent
ac46320f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
source.c
dlls/dbghelp/source.c
+2
-2
No files found.
dlls/dbghelp/source.c
View file @
8527f910
...
...
@@ -155,7 +155,7 @@ BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
struct
line_info
*
dli
;
void
*
ptr
;
SRCCODEINFO
sci
;
c
har
*
file
;
c
onst
char
*
file
;
if
(
!
cb
)
return
FALSE
;
pcs
=
process_find_by_handle
(
hProcess
);
...
...
@@ -186,7 +186,7 @@ BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
{
if
(
dli
->
is_source_file
)
{
file
=
(
char
*
)
source_get
(
pair
.
effective
,
dli
->
u
.
source_file
);
file
=
source_get
(
pair
.
effective
,
dli
->
u
.
source_file
);
if
(
regexec
(
&
re
,
file
,
0
,
NULL
,
0
)
!=
0
)
file
=
""
;
strcpy
(
sci
.
FileName
,
file
);
}
...
...
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