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
e4db17f2
Commit
e4db17f2
authored
Jan 01, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Don't cast the return value of PF[CD]I_ALLOC; those are void pointers.
parent
4008a350
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
fci.c
dlls/cabinet/fci.c
+5
-5
fdi.c
dlls/cabinet/fdi.c
+7
-7
No files found.
dlls/cabinet/fci.c
View file @
e4db17f2
...
...
@@ -382,7 +382,7 @@ static BOOL fci_flush_data_block (HFCI hfci, int* err,
/* inefficient, but it's harder to forget about freeing the buffer :-). */
/* Reserved areas are used seldom besides that... */
if
(
cbReserveCFData
!=
0
)
{
if
(
!
(
reserved
=
(
char
*
)
PFCI_ALLOC
(
hfci
,
cbReserveCFData
)))
{
if
(
!
(
reserved
=
PFCI_ALLOC
(
hfci
,
cbReserveCFData
)))
{
fci_set_error
(
FCIERR_ALLOC_FAIL
,
ERROR_NOT_ENOUGH_MEMORY
,
TRUE
);
return
FALSE
;
}
...
...
@@ -852,7 +852,7 @@ static BOOL fci_flushfolder_copy_cffolder(HFCI hfci, int* err, UINT cbReserveCFF
/* add optional reserved area */
if
(
cbReserveCFFolder
!=
0
)
{
if
(
!
(
reserved
=
(
char
*
)
PFCI_ALLOC
(
hfci
,
cbReserveCFFolder
)))
{
if
(
!
(
reserved
=
PFCI_ALLOC
(
hfci
,
cbReserveCFFolder
)))
{
fci_set_error
(
FCIERR_ALLOC_FAIL
,
ERROR_NOT_ENOUGH_MEMORY
,
TRUE
);
return
FALSE
;
}
...
...
@@ -1419,7 +1419,7 @@ static BOOL fci_flush_folder(
/* save size of file CFDATA2 - required for the folder's offset to data */
sizeFileCFDATA2old
=
p_fci_internal
->
sizeFileCFDATA2
;
if
(
!
(
reserved
=
(
char
*
)
PFCI_ALLOC
(
hfci
,
cbReserveCFData
+
sizeof
(
CFDATA
))))
{
if
(
!
(
reserved
=
PFCI_ALLOC
(
hfci
,
cbReserveCFData
+
sizeof
(
CFDATA
))))
{
fci_set_error
(
FCIERR_ALLOC_FAIL
,
ERROR_NOT_ENOUGH_MEMORY
,
TRUE
);
PFCI_CLOSE
(
hfci
,
handleCFDATA1new
,
&
err
,
p_fci_internal
->
pv
);
/* TODO error handling of err */
...
...
@@ -1753,7 +1753,7 @@ static BOOL fci_flush_cabinet(
/* add optional reserved area */
if
(
cbReserveCFHeader
!=
0
)
{
if
(
!
(
reserved
=
(
char
*
)
PFCI_ALLOC
(
hfci
,
cbReserveCFHeader
)))
{
if
(
!
(
reserved
=
PFCI_ALLOC
(
hfci
,
cbReserveCFHeader
)))
{
fci_set_error
(
FCIERR_ALLOC_FAIL
,
ERROR_NOT_ENOUGH_MEMORY
,
TRUE
);
return
FALSE
;
}
...
...
@@ -2397,7 +2397,7 @@ BOOL __cdecl FCIAddFile(
fci_set_error
(
FCIERR_NONE
,
ERROR_GEN_FAILURE
,
TRUE
);
return
FALSE
;
}
if
(
!
(
p_fci_internal
->
data_in
=
(
char
*
)
PFCI_ALLOC
(
hfci
,
CB_MAX_CHUNK
)))
{
if
(
!
(
p_fci_internal
->
data_in
=
PFCI_ALLOC
(
hfci
,
CB_MAX_CHUNK
)))
{
fci_set_error
(
FCIERR_ALLOC_FAIL
,
ERROR_NOT_ENOUGH_MEMORY
,
TRUE
);
return
FALSE
;
}
...
...
dlls/cabinet/fdi.c
View file @
e4db17f2
...
...
@@ -1054,7 +1054,7 @@ struct Ziphuft **t, cab_LONG *m, fdi_decomp_state *decomp_state)
l
[
h
]
=
j
;
/* set table size in stack */
/* allocate and link in new table */
if
(
!
(
q
=
(
struct
Ziphuft
*
)
PFDI_ALLOC
(
CAB
(
hfdi
),
(
z
+
1
)
*
sizeof
(
struct
Ziphuft
))))
if
(
!
(
q
=
PFDI_ALLOC
(
CAB
(
hfdi
),
(
z
+
1
)
*
sizeof
(
struct
Ziphuft
))))
{
if
(
h
)
fdi_Ziphuft_free
(
CAB
(
hfdi
),
ZIP
(
u
)[
0
]);
...
...
@@ -2180,8 +2180,8 @@ static int fdi_decomp(const struct fdi_file *fi, int savemode, fdi_decomp_state
if
(
cab
->
mii
.
folder_resv
>
0
)
PFDI_SEEK
(
CAB
(
hfdi
),
cab
->
cabhf
,
cab
->
mii
.
folder_resv
,
SEEK_CUR
);
fol
=
(
struct
fdi_folder
*
)
PFDI_ALLOC
(
CAB
(
hfdi
),
sizeof
(
struct
fdi_folder
));
fol
=
PFDI_ALLOC
(
CAB
(
hfdi
),
sizeof
(
struct
fdi_folder
));
if
(
!
fol
)
{
ERR
(
"out of memory!
\n
"
);
return
DECR_NOMEMORY
;
...
...
@@ -2202,8 +2202,8 @@ static int fdi_decomp(const struct fdi_file *fi, int savemode, fdi_decomp_state
for
(
i
=
0
;
i
<
fdici
.
cFiles
;
i
++
)
{
if
(
PFDI_READ
(
CAB
(
hfdi
),
cab
->
cabhf
,
buf2
,
cffile_SIZEOF
)
!=
cffile_SIZEOF
)
return
DECR_INPUT
;
file
=
(
struct
fdi_file
*
)
PFDI_ALLOC
(
CAB
(
hfdi
),
sizeof
(
struct
fdi_file
));
file
=
PFDI_ALLOC
(
CAB
(
hfdi
),
sizeof
(
struct
fdi_file
));
if
(
!
file
)
{
ERR
(
"out of memory!
\n
"
);
return
DECR_NOMEMORY
;
...
...
@@ -2592,7 +2592,7 @@ BOOL __cdecl FDICopy(
if
(
CAB
(
mii
).
folder_resv
>
0
)
PFDI_SEEK
(
hfdi
,
cabhf
,
CAB
(
mii
).
folder_resv
,
SEEK_CUR
);
fol
=
(
struct
fdi_folder
*
)
PFDI_ALLOC
(
hfdi
,
sizeof
(
struct
fdi_folder
));
fol
=
PFDI_ALLOC
(
hfdi
,
sizeof
(
struct
fdi_folder
));
if
(
!
fol
)
{
ERR
(
"out of memory!
\n
"
);
PFDI_INT
(
hfdi
)
->
perf
->
erfOper
=
FDIERROR_ALLOC_FAIL
;
...
...
@@ -2622,7 +2622,7 @@ BOOL __cdecl FDICopy(
goto
bail_and_fail
;
}
file
=
(
struct
fdi_file
*
)
PFDI_ALLOC
(
hfdi
,
sizeof
(
struct
fdi_file
));
file
=
PFDI_ALLOC
(
hfdi
,
sizeof
(
struct
fdi_file
));
if
(
!
file
)
{
ERR
(
"out of memory!
\n
"
);
PFDI_INT
(
hfdi
)
->
perf
->
erfOper
=
FDIERROR_ALLOC_FAIL
;
...
...
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