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
6b1bc0be
Commit
6b1bc0be
authored
Apr 06, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Get rid of no longer needed HAVE_ZLIB checks.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ca092dcf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
dwarf.c
dlls/dbghelp/dwarf.c
+0
-7
No files found.
dlls/dbghelp/dwarf.c
View file @
6b1bc0be
...
...
@@ -3363,7 +3363,6 @@ static void dwarf2_location_compute(struct process* pcs,
}
}
#ifdef HAVE_ZLIB
static
void
*
zalloc
(
void
*
priv
,
uInt
items
,
uInt
sz
)
{
return
HeapAlloc
(
GetProcessHeap
(),
0
,
items
*
sz
);
...
...
@@ -3445,8 +3444,6 @@ out:
return
ret
;
}
#endif
static
inline
BOOL
dwarf2_init_section
(
dwarf2_section_t
*
section
,
struct
image_file_map
*
fmap
,
const
char
*
sectname
,
const
char
*
zsectname
,
struct
image_section_map
*
ism
)
...
...
@@ -3470,11 +3467,7 @@ static inline BOOL dwarf2_init_section(dwarf2_section_t* section, struct image_f
if
(
zsectname
&&
image_find_section
(
fmap
,
zsectname
,
ism
))
{
#ifdef HAVE_ZLIB
return
dwarf2_init_zsection
(
section
,
zsectname
,
ism
);
#else
FIXME
(
"dbghelp not built with zlib, but compressed section found
\n
"
);
#endif
}
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