Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
7032aafa
Commit
7032aafa
authored
16 years ago
by
JPeg
Browse files
Options
Downloads
Patches
Plain Diff
Zip: remove compilation warnings in libs/unzip
parent
a2b72dbb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libs/unzip/crypt.h
+1
-0
1 addition, 0 deletions
libs/unzip/crypt.h
libs/unzip/ioapi.c
+7
-0
7 additions, 0 deletions
libs/unzip/ioapi.c
with
8 additions
and
0 deletions
libs/unzip/crypt.h
+
1
−
0
View file @
7032aafa
...
...
@@ -34,6 +34,7 @@
*/
static
int
decrypt_byte
(
unsigned
long
*
pkeys
,
const
unsigned
long
*
pcrc_32_tab
)
{
(
void
)
pcrc_32_tab
;
unsigned
temp
;
/* POTENTIAL BUG: temp*(temp^1) may overflow in an
* unpredictable manner on 16-bit systems; not a problem
* with any known compiler so far, though */
...
...
This diff is collapsed.
Click to expand it.
libs/unzip/ioapi.c
+
7
−
0
View file @
7032aafa
...
...
@@ -70,6 +70,7 @@ voidpf ZCALLBACK fopen_file_func (opaque, filename, mode)
const
char
*
filename
;
int
mode
;
{
(
void
)
opaque
;
FILE
*
file
=
NULL
;
const
char
*
mode_fopen
=
NULL
;
if
((
mode
&
ZLIB_FILEFUNC_MODE_READWRITEFILTER
)
==
ZLIB_FILEFUNC_MODE_READ
)
...
...
@@ -93,6 +94,7 @@ uLong ZCALLBACK fread_file_func (opaque, stream, buf, size)
void
*
buf
;
uLong
size
;
{
(
void
)
opaque
;
uLong
ret
;
ret
=
(
uLong
)
fread
(
buf
,
1
,
(
size_t
)
size
,
(
FILE
*
)
stream
);
return
ret
;
...
...
@@ -105,6 +107,7 @@ uLong ZCALLBACK fwrite_file_func (opaque, stream, buf, size)
const
void
*
buf
;
uLong
size
;
{
(
void
)
opaque
;
uLong
ret
;
ret
=
(
uLong
)
fwrite
(
buf
,
1
,
(
size_t
)
size
,
(
FILE
*
)
stream
);
return
ret
;
...
...
@@ -114,6 +117,7 @@ long ZCALLBACK ftell_file_func (opaque, stream)
voidpf
opaque
;
voidpf
stream
;
{
(
void
)
opaque
;
long
ret
;
ret
=
ftell
((
FILE
*
)
stream
);
return
ret
;
...
...
@@ -125,6 +129,7 @@ long ZCALLBACK fseek_file_func (opaque, stream, offset, origin)
uLong
offset
;
int
origin
;
{
(
void
)
opaque
;
int
fseek_origin
=
0
;
long
ret
;
switch
(
origin
)
...
...
@@ -149,6 +154,7 @@ int ZCALLBACK fclose_file_func (opaque, stream)
voidpf
opaque
;
voidpf
stream
;
{
(
void
)
opaque
;
int
ret
;
ret
=
fclose
((
FILE
*
)
stream
);
return
ret
;
...
...
@@ -158,6 +164,7 @@ int ZCALLBACK ferror_file_func (opaque, stream)
voidpf
opaque
;
voidpf
stream
;
{
(
void
)
opaque
;
int
ret
;
ret
=
ferror
((
FILE
*
)
stream
);
return
ret
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment