Skip to content

Commit

Permalink
Merge pull request cloudflare#55 from jibsen/fix-uninitialized-var
Browse files Browse the repository at this point in the history
Fix uninitialized variable
  • Loading branch information
Dead2 committed Nov 9, 2015
2 parents 7d91f9d + 8129b65 commit 1790c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deflate_p.h
Expand Up @@ -59,7 +59,7 @@ local inline Pos insert_string_sse(deflate_state *const s, const Pos str, uInt c
#endif

local inline Pos insert_string_c(deflate_state *const s, const Pos str, uInt count) {
Pos ret;
Pos ret = 0;
uInt idx;

for (idx = 0; idx < count; idx++) {
Expand Down

0 comments on commit 1790c15

Please sign in to comment.