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
4efd28ce
Commit
4efd28ce
authored
Oct 29, 2000
by
Uwe Bonnes
Committed by
Alexandre Julliard
Oct 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DEBUG_ProcessDBGFile: use a stack variable for the extra_info.
parent
334a42f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
msc.c
debugger/msc.c
+2
-1
No files found.
debugger/msc.c
View file @
4efd28ce
...
...
@@ -3062,6 +3062,7 @@ DEBUG_ProcessDBGFile(DBG_MODULE* module, const char* filename)
char
*
addr
;
PIMAGE_DEBUG_DIRECTORY
dbghdr
;
DBG_MODULE
module2
;
MSC_DBG_INFO
extra_info2
;
int
i
;
int
j
;
int
nsect
;
...
...
@@ -3106,7 +3107,7 @@ DEBUG_ProcessDBGFile(DBG_MODULE* module, const char* filename)
* COFF stuff embedded within the DBG file.
*/
memset
((
char
*
)
&
module2
,
0
,
sizeof
(
module2
));
module2
.
extra_info
=
DBG_alloc
(
sizeof
(
MSC_DBG_INFO
))
;
module2
.
extra_info
=
&
extra_info2
;
MSC_INFO
(
&
module2
)
->
dbg_info
=
(
addr
+
dbghdr
->
PointerToRawData
);
MSC_INFO
(
&
module2
)
->
dbg_size
=
dbghdr
->
SizeOfData
;
module2
.
load_addr
=
module
->
load_addr
;
...
...
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