Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
c87631c2
Commit
c87631c2
authored
Jan 10, 2015
by
Alexis La Goutte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix other shorten-64-to-32 casting error found by MSVC (64bits)
Thanks to Pascal
parent
0069ca9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/nghttp2_hd_huffman.c
lib/nghttp2_hd_huffman.c
+1
-1
No files found.
lib/nghttp2_hd_huffman.c
View file @
c87631c2
...
...
@@ -43,7 +43,7 @@ extern const nghttp2_huff_decode huff_decode_table[][16];
static
ssize_t
huff_encode_sym
(
nghttp2_bufs
*
bufs
,
size_t
*
avail_ptr
,
size_t
rembits
,
const
nghttp2_huff_sym
*
sym
)
{
int
rv
;
uint32
_t
nbits
=
sym
->
nbits
;
size
_t
nbits
=
sym
->
nbits
;
uint32_t
code
=
sym
->
code
;
/* We assume that sym->nbits <= 32 */
...
...
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