diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2019-05-06 20:51:26 +0200 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2019-05-06 20:51:26 +0200 |
commit | d1a2845b7d0edf83e4cfcde090568142a4d0685d (patch) | |
tree | 8f7108783b707d16366ae7aa0e65ebe690ebc51d /recipes/libpng.recipe | |
parent | 4953be7520a4b1cbe3751f783bf4f35f4eb5b449 (diff) |
recipes: libpng: update to 1.6.37
Fixes a use-after-free bug in the simplified libpng API
png_image_free(), which has been assigned ID CVE-2019-7317.
(GStreamer does not appear to use this API though.)
Diffstat (limited to 'recipes/libpng.recipe')
-rw-r--r-- | recipes/libpng.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/libpng.recipe b/recipes/libpng.recipe index 703269e7..70bd221a 100644 --- a/recipes/libpng.recipe +++ b/recipes/libpng.recipe @@ -3,10 +3,10 @@ class Recipe(recipe.Recipe): name = 'libpng' - version = '1.6.35' + version = '1.6.37' stype = SourceType.TARBALL url = 'sf://' - tarball_checksum = '23912ec8c9584917ed9b09c5023465d71709dce089be503c7867fec68a93bcd7' + tarball_checksum = '505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca' licenses = [{License.LibPNG: ['LICENSE']}] deps = ['zlib'] patches = [name + '/0001-neon-fix-function-export-names-for-iOS-armv7.patch'] |