[PR #408] [MERGED] Fixed CRC-32 Error #786

Open
opened 2026-01-29 15:15:15 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/408
Author: @chatn0ir07
Created: 10/14/2019
Status: Merged
Merged: 10/14/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (1)

📊 Changes

3 files changed (+14 additions, -19 deletions)

View changed files

📝 hash/hash.c (+10 -17)
📝 hash/hash.h (+3 -2)
📝 hash/test_program.c (+1 -0)

📄 Description

My pull request #406 had an error, it made the CRC-32 Checksum 1 off.
With the Code of #406
The function returned '1579384326' for name

With the new code it now returns '1579384327' which is correct.


🔄 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/TheAlgorithms/C/pull/408 **Author:** [@chatn0ir07](https://github.com/chatn0ir07) **Created:** 10/14/2019 **Status:** ✅ Merged **Merged:** 10/14/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`ca18351`](https://github.com/TheAlgorithms/C/commit/ca18351173b1b0f40676f4b4373138f2202cd2e1) Fixed CRC-32 Error ### 📊 Changes **3 files changed** (+14 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `hash/hash.c` (+10 -17) 📝 `hash/hash.h` (+3 -2) 📝 `hash/test_program.c` (+1 -0) </details> ### 📄 Description My pull request #406 had an error, it made the CRC-32 Checksum 1 off. With the Code of #406 The function returned '1579384326' for name With the new code it now returns '1579384327' which is correct. --- <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 15:15:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#786