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
8f3b7dfd
Commit
8f3b7dfd
authored
Dec 06, 2004
by
Filip Navara
Committed by
Alexandre Julliard
Dec 06, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to free pointer from union that isn't used.
parent
e3060b4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
14 deletions
+26
-14
fdi.c
dlls/cabinet/fdi.c
+26
-14
No files found.
dlls/cabinet/fdi.c
View file @
8f3b7dfd
...
...
@@ -2696,13 +2696,19 @@ BOOL __cdecl FDICopy(
}
/* free decompression temps */
if
(
LZX
(
window
))
{
PFDI_FREE
(
hfdi
,
LZX
(
window
));
LZX
(
window
)
=
NULL
;
}
if
(
QTM
(
window
))
{
PFDI_FREE
(
hfdi
,
QTM
(
window
));
QTM
(
window
)
=
NULL
;
switch
(
fol
->
comp_type
&
cffoldCOMPTYPE_MASK
)
{
case
cffoldCOMPTYPE_LZX
:
if
(
LZX
(
window
))
{
PFDI_FREE
(
hfdi
,
LZX
(
window
));
LZX
(
window
)
=
NULL
;
}
break
;
case
cffoldCOMPTYPE_QUANTUM
:
if
(
QTM
(
window
))
{
PFDI_FREE
(
hfdi
,
QTM
(
window
));
QTM
(
window
)
=
NULL
;
}
break
;
}
while
(
decomp_state
)
{
...
...
@@ -2738,13 +2744,19 @@ BOOL __cdecl FDICopy(
bail_and_fail:
/* here we free ram before error returns */
/* free decompression temps */
if
(
LZX
(
window
))
{
PFDI_FREE
(
hfdi
,
LZX
(
window
));
LZX
(
window
)
=
NULL
;
}
if
(
QTM
(
window
))
{
PFDI_FREE
(
hfdi
,
QTM
(
window
));
QTM
(
window
)
=
NULL
;
switch
(
fol
->
comp_type
&
cffoldCOMPTYPE_MASK
)
{
case
cffoldCOMPTYPE_LZX
:
if
(
LZX
(
window
))
{
PFDI_FREE
(
hfdi
,
LZX
(
window
));
LZX
(
window
)
=
NULL
;
}
break
;
case
cffoldCOMPTYPE_QUANTUM
:
if
(
QTM
(
window
))
{
PFDI_FREE
(
hfdi
,
QTM
(
window
));
QTM
(
window
)
=
NULL
;
}
break
;
}
while
(
decomp_state
)
{
...
...
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