[PR #1148] [CLOSED] [FIX] Update LibPNG #1935

Closed
opened 2026-01-29 17:19:20 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/CCExtractor/ccextractor/pull/1148
Author: @sampoder
Created: 12/11/2019
Status: Closed

Base: masterHead: updatelibpng


📝 Commits (10+)

📊 Changes

24 files changed (+40041 additions, -37747 deletions)

View changed files

src/libpng/png.5 (+84 -0)
📝 src/libpng/png.c (+4607 -4614)
📝 src/libpng/png.h (+3247 -3278)
📝 src/libpng/pngconf.h (+623 -623)
📝 src/libpng/pngdebug.h (+153 -153)
📝 src/libpng/pngerror.c (+963 -963)
📝 src/libpng/pngget.c (+1249 -1249)
📝 src/libpng/pnginfo.h (+267 -267)
📝 src/libpng/pngmem.c (+284 -284)
📝 src/libpng/pngpread.c (+1096 -1096)
📝 src/libpng/pngpriv.h (+2152 -2126)
📝 src/libpng/pngread.c (+4225 -4219)
📝 src/libpng/pngrio.c (+120 -120)
📝 src/libpng/pngrtran.c (+5044 -5004)
📝 src/libpng/pngrutil.c (+4681 -4682)
📝 src/libpng/pngset.c (+1802 -1802)
📝 src/libpng/pngstruct.h (+489 -483)
src/libpng/pngtest.c (+2158 -0)
📝 src/libpng/pngtrans.c (+864 -864)
src/libpng/pngusr.dfa (+14 -0)

...and 4 more files

📄 Description

In raising this pull request, I confirm the following (please check boxes):

  • I have read and understood the contributors guide.
  • I have checked that another pull request for this purpose does not exist.
  • I have considered, and confirmed that this submission will be valuable to others.
  • [x ] I accept that this submission may not be used, and the pull request closed at the will of the maintainer.
  • I give this submission freely, and claim no ownership to its content.
  • I have mentioned this change in the changelog.

My familiarity with the project is as follows (check one):

  • I have used CCExtractor just a couple of times.

This update is very important as it fixes a security vulnerability in png_image_free(). It also fixes bugs.


🔄 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/CCExtractor/ccextractor/pull/1148 **Author:** [@sampoder](https://github.com/sampoder) **Created:** 12/11/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `updatelibpng` --- ### 📝 Commits (10+) - [`b7c011e`](https://github.com/CCExtractor/ccextractor/commit/b7c011eb072e4c8a8a63a370647dcbc1d452c1d2) Create info.md - [`3e623d6`](https://github.com/CCExtractor/ccextractor/commit/3e623d658dcecde4af6f0917763ef1c0187f51c8) Add files via upload - [`2312c24`](https://github.com/CCExtractor/ccextractor/commit/2312c24a52dd30060334bb2a8ecd280e2612593e) Update - [`7231547`](https://github.com/CCExtractor/ccextractor/commit/72315476308dd5416478fb1ccb7c2cbbb7750462) Rename info.md to README.md - [`d4d8edf`](https://github.com/CCExtractor/ccextractor/commit/d4d8edf82ace00afb73bedbfc3e36796e40f0a19) Delete InstallCCExtractor.zip - [`313a80c`](https://github.com/CCExtractor/ccextractor/commit/313a80c7e2c59f0cd5cf8f48e2ce360914acae95) Add files via upload - [`32bd703`](https://github.com/CCExtractor/ccextractor/commit/32bd7031110f23dfebedfa0541959a6f0abe2b4d) fix bugs - [`40563ff`](https://github.com/CCExtractor/ccextractor/commit/40563ff38fecc9b00c9a6da2073ff01e37476d13) Merge branch 'master' of https://github.com/sampoder/ccextractor - [`cee6f69`](https://github.com/CCExtractor/ccextractor/commit/cee6f69c7def743b725bce66806ceadd54883e32) Update InstallCCExtractorMacGUI.zip - [`1e94d44`](https://github.com/CCExtractor/ccextractor/commit/1e94d4435162c5386034172429dab4a27a5a421c) Create placeholder.md ### 📊 Changes **24 files changed** (+40041 additions, -37747 deletions) <details> <summary>View changed files</summary> ➕ `src/libpng/png.5` (+84 -0) 📝 `src/libpng/png.c` (+4607 -4614) 📝 `src/libpng/png.h` (+3247 -3278) 📝 `src/libpng/pngconf.h` (+623 -623) 📝 `src/libpng/pngdebug.h` (+153 -153) 📝 `src/libpng/pngerror.c` (+963 -963) 📝 `src/libpng/pngget.c` (+1249 -1249) 📝 `src/libpng/pnginfo.h` (+267 -267) 📝 `src/libpng/pngmem.c` (+284 -284) 📝 `src/libpng/pngpread.c` (+1096 -1096) 📝 `src/libpng/pngpriv.h` (+2152 -2126) 📝 `src/libpng/pngread.c` (+4225 -4219) 📝 `src/libpng/pngrio.c` (+120 -120) 📝 `src/libpng/pngrtran.c` (+5044 -5004) 📝 `src/libpng/pngrutil.c` (+4681 -4682) 📝 `src/libpng/pngset.c` (+1802 -1802) 📝 `src/libpng/pngstruct.h` (+489 -483) ➕ `src/libpng/pngtest.c` (+2158 -0) 📝 `src/libpng/pngtrans.c` (+864 -864) ➕ `src/libpng/pngusr.dfa` (+14 -0) _...and 4 more files_ </details> ### 📄 Description **In raising this pull request, I confirm the following (please check boxes):** - [x] I have read and understood the [contributors guide](https://github.com/CCExtractor/ccextractor/blob/master/.github/CONTRIBUTING.md). - [x] I have checked that another pull request for this purpose does not exist. - [x] I have considered, and confirmed that this submission will be valuable to others. - [x ] I accept that this submission may not be used, and the pull request closed at the will of the maintainer. - [x] I give this submission freely, and claim no ownership to its content. - [x] **I have mentioned this change in the [changelog](https://github.com/CCExtractor/ccextractor/blob/master/docs/CHANGES.TXT).** **My familiarity with the project is as follows (check one):** - [x] I have used CCExtractor just a couple of times. --- This update is very important as it fixes a security vulnerability in png_image_free(). It also fixes bugs. --- <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 17:19:20 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#1935