Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
cd6a8eae
Commit
cd6a8eae
authored
Jun 05, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zlib cleanup: final fixups
Jörn missed a few places of FAR conversion in inflate
parent
3e3addbb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lib/zlib_inflate/inflate.c
lib/zlib_inflate/inflate.c
+3
-3
No files found.
lib/zlib_inflate/inflate.c
View file @
cd6a8eae
...
...
@@ -255,7 +255,7 @@ int zlib_inflateSync(
)
{
uInt
n
;
/* number of bytes to look at */
Byte
f
*
p
;
/* pointer to bytes */
Byte
*
p
;
/* pointer to bytes */
uInt
m
;
/* number of marker bytes found in a row */
uLong
r
,
w
;
/* temporaries to save total_in and total_out */
...
...
@@ -332,9 +332,9 @@ static int zlib_inflate_addhistory(inflate_blocks_statef *s,
uLong
b
;
/* bit buffer */
/* NOT USED HERE */
uInt
k
;
/* bits in bit buffer */
/* NOT USED HERE */
uInt
t
;
/* temporary storage */
Byte
f
*
p
;
/* input data pointer */
Byte
*
p
;
/* input data pointer */
uInt
n
;
/* bytes available there */
Byte
f
*
q
;
/* output window write pointer */
Byte
*
q
;
/* output window write pointer */
uInt
m
;
/* bytes to end of window or read pointer */
if
(
s
->
read
!=
s
->
write
)
...
...
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