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
c702da34
Commit
c702da34
authored
Jul 13, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Constify some variables.
parent
6d474663
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
minidump.c
dlls/dbghelp/minidump.c
+1
-1
pe_module.c
dlls/dbghelp/pe_module.c
+2
-2
No files found.
dlls/dbghelp/minidump.c
View file @
c702da34
...
...
@@ -428,7 +428,7 @@ static void writeat(struct dump_context* dc, RVA rva, const void* data, unsigned
* writes a new chunk of data to the minidump, increasing the current
* rva in dc
*/
static
void
append
(
struct
dump_context
*
dc
,
void
*
data
,
unsigned
size
)
static
void
append
(
struct
dump_context
*
dc
,
const
void
*
data
,
unsigned
size
)
{
writeat
(
dc
,
dc
->
rva
,
data
,
size
);
dc
->
rva
+=
size
;
...
...
dlls/dbghelp/pe_module.c
View file @
c702da34
...
...
@@ -134,7 +134,7 @@ static BOOL pe_load_dbg_file(const struct process* pcs, struct module* module,
*/
static
BOOL
pe_load_msc_debug_info
(
const
struct
process
*
pcs
,
struct
module
*
module
,
void
*
mapping
,
IMAGE_NT_HEADERS
*
nth
)
void
*
mapping
,
const
IMAGE_NT_HEADERS
*
nth
)
{
BOOL
ret
=
FALSE
;
const
IMAGE_DATA_DIRECTORY
*
dir
;
...
...
@@ -182,7 +182,7 @@ static BOOL pe_load_msc_debug_info(const struct process* pcs,
*/
static
BOOL
pe_load_export_debug_info
(
const
struct
process
*
pcs
,
struct
module
*
module
,
void
*
mapping
,
IMAGE_NT_HEADERS
*
nth
)
void
*
mapping
,
const
IMAGE_NT_HEADERS
*
nth
)
{
unsigned
int
i
;
const
IMAGE_EXPORT_DIRECTORY
*
exports
;
...
...
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