Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lshpack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1910,7 +1910,6 @@ lshpack_dec_huff_decode (const unsigned char *src, int src_len,
buf |= (uintptr_t) *src++ << 24;
buf |= (uintptr_t) *src++ << 16;
#else
FALL_THROUGH;
Comment on lines 1911 to -1913

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of removing FALL_THROUGH;, should that line be moved above the #else ?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, this PR is just a marker for me -- it has to be finished.

case 4:
buf <<= 8;
buf |= (uintptr_t) *src++;
Expand Down