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
70cfa0c3
Commit
70cfa0c3
authored
Aug 06, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Sep 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Use helper function to remove duplicate code.
parent
6bdfc2fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
30 deletions
+21
-30
fdi.c
dlls/cabinet/fdi.c
+21
-30
No files found.
dlls/cabinet/fdi.c
View file @
70cfa0c3
...
@@ -2258,6 +2258,25 @@ static int fdi_decomp(const struct fdi_file *fi, int savemode, fdi_decomp_state
...
@@ -2258,6 +2258,25 @@ static int fdi_decomp(const struct fdi_file *fi, int savemode, fdi_decomp_state
return
DECR_OK
;
return
DECR_OK
;
}
}
static
void
free_decompression_temps
(
HFDI
hfdi
,
struct
fdi_folder
*
fol
,
fdi_decomp_state
*
decomp_state
)
{
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
;
}
}
/***********************************************************************
/***********************************************************************
* FDICopy (CABINET.22)
* FDICopy (CABINET.22)
*
*
...
@@ -2839,21 +2858,7 @@ BOOL __cdecl FDICopy(
...
@@ -2839,21 +2858,7 @@ BOOL __cdecl FDICopy(
}
}
}
}
/* free decompression temps */
free_decompression_temps
(
hfdi
,
fol
,
decomp_state
);
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
)
{
while
(
decomp_state
)
{
fdi_decomp_state
*
prev_fds
;
fdi_decomp_state
*
prev_fds
;
...
@@ -2887,21 +2892,7 @@ BOOL __cdecl FDICopy(
...
@@ -2887,21 +2892,7 @@ BOOL __cdecl FDICopy(
bail_and_fail:
/* here we free ram before error returns */
bail_and_fail:
/* here we free ram before error returns */
/* free decompression temps */
free_decompression_temps
(
hfdi
,
fol
,
decomp_state
);
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
;
}
if
(
filehf
)
PFDI_CLOSE
(
hfdi
,
filehf
);
if
(
filehf
)
PFDI_CLOSE
(
hfdi
,
filehf
);
...
...
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