[PR #737] [CLOSED] Remove unnecessary var init #1373

Open
opened 2026-01-29 20:53:45 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/737
Author: @daisuke-t-jp
Created: 12/27/2018
Status: Closed

Base: masterHead: dev


📝 Commits (8)

📊 Changes

64 files changed (+4882 additions, -2701 deletions)

View changed files

📝 BUILD (+3 -5)
📝 README (+1 -1)
📝 README.md (+1 -1)
📝 c/common/constants.h (+120 -0)
📝 c/common/platform.h (+2 -2)
📝 c/common/transform.c (+2 -2)
📝 c/dec/bit_reader.c (+17 -0)
📝 c/dec/bit_reader.h (+51 -4)
📝 c/dec/decode.c (+343 -245)
📝 c/dec/huffman.h (+6 -5)
📝 c/dec/state.c (+6 -13)
📝 c/dec/state.h (+144 -37)
📝 c/enc/backward_references.c (+8 -7)
📝 c/enc/backward_references.h (+3 -2)
📝 c/enc/backward_references_hq.c (+42 -27)
📝 c/enc/backward_references_hq.h (+7 -6)
📝 c/enc/backward_references_inc.h (+23 -15)
📝 c/enc/brotli_bit_stream.c (+6 -8)
📝 c/enc/dictionary_hash.c (+1826 -1100)
📝 c/enc/dictionary_hash.h (+2 -1)

...and 44 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/google/brotli/pull/737 **Author:** [@daisuke-t-jp](https://github.com/daisuke-t-jp) **Created:** 12/27/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (8) - [`66f42c4`](https://github.com/google/brotli/commit/66f42c46c16435534e761466a7dd090a36415517) Remove unnecessary var init - [`5b49dd6`](https://github.com/google/brotli/commit/5b49dd6e174d34c86ebebb56b48c1481b0ed8c45) Remove unnecessary var init - [`8109882`](https://github.com/google/brotli/commit/8109882ecf1bdadf599d967f08a897a00a3ecd57) Fix #741 - [`9cd01c0`](https://github.com/google/brotli/commit/9cd01c0437e8b6010434d3491a348a5645de624b) Update WORKSPACE files. (#742) - [`4b2b2d4`](https://github.com/google/brotli/commit/4b2b2d4f83ffeaac7708e44409fe34896a01a278) Update (#749) - [`17d797f`](https://github.com/google/brotli/commit/17d797f1f95e16b3646457b367fa200bd4e6d359) Remove unnecessary var init - [`30c59e6`](https://github.com/google/brotli/commit/30c59e6b3cdeb5773415890e843f7407805f05c8) Remove unnecessary var init - [`891497d`](https://github.com/google/brotli/commit/891497dfcc5ee9f4830501673cb516656da529fe) Merge branch 'dev' of https://github.com/daisuke-t-jp/brotli into dev ### 📊 Changes **64 files changed** (+4882 additions, -2701 deletions) <details> <summary>View changed files</summary> 📝 `BUILD` (+3 -5) 📝 `README` (+1 -1) 📝 `README.md` (+1 -1) 📝 `c/common/constants.h` (+120 -0) 📝 `c/common/platform.h` (+2 -2) 📝 `c/common/transform.c` (+2 -2) 📝 `c/dec/bit_reader.c` (+17 -0) 📝 `c/dec/bit_reader.h` (+51 -4) 📝 `c/dec/decode.c` (+343 -245) 📝 `c/dec/huffman.h` (+6 -5) 📝 `c/dec/state.c` (+6 -13) 📝 `c/dec/state.h` (+144 -37) 📝 `c/enc/backward_references.c` (+8 -7) 📝 `c/enc/backward_references.h` (+3 -2) 📝 `c/enc/backward_references_hq.c` (+42 -27) 📝 `c/enc/backward_references_hq.h` (+7 -6) 📝 `c/enc/backward_references_inc.h` (+23 -15) 📝 `c/enc/brotli_bit_stream.c` (+6 -8) 📝 `c/enc/dictionary_hash.c` (+1826 -1100) 📝 `c/enc/dictionary_hash.h` (+2 -1) _...and 44 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 20:53:45 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1373