1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

Update to 5.6.27 release.

This commit is contained in:
Alex Dupre 2016-10-21 09:02:18 +00:00
parent ae8f325c44
commit 87c695efe2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=424397
4 changed files with 4 additions and 23 deletions

View File

@ -1,7 +1,6 @@
# Created by: Alex Dupre <ale@FreeBSD.org>
# $FreeBSD$
PORTREVISION= 2
CATEGORIES= graphics
MASTERDIR= ${.CURDIR}/../../lang/php56

View File

@ -1,18 +0,0 @@
--- libgd/gd_webp.c.orig 2016-09-28 10:07:06.092196000 +0200
+++ libgd/gd_webp.c 2016-09-28 10:08:12.429030000 +0200
@@ -180,6 +180,15 @@ void gdImageWebpCtx (gdImagePtr im, gdIO
/* Conversion to Y,U,V buffer */
yuv_width = (width + 1) >> 1;
yuv_height = (height + 1) >> 1;
+
+ if (overflow2(width, height)) {
+ return;
+ }
+ /* simplification possible, because WebP must not be larger than 16384**2 */
+ if (overflow2(width * height, 2 * sizeof(unsigned char))) {
+ return;
+ }
+
yuv_nbytes = width * height + 2 * yuv_width * yuv_height;
if ((Y = (unsigned char *)gdCalloc(yuv_nbytes, sizeof(unsigned char))) == NULL) {

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= php56
PORTVERSION= 5.6.26
PORTVERSION= 5.6.27
PORTREVISION?= 0
CATEGORIES?= lang devel www
MASTER_SITES= PHP/distributions

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1474538003
SHA256 (php-5.6.26.tar.xz) = 203a854f0f243cb2810d1c832bc871ff133eccdf1ff69d32846f93bc1bef58a8
SIZE (php-5.6.26.tar.xz) = 12412992
TIMESTAMP = 1477040451
SHA256 (php-5.6.27.tar.xz) = 16eb544498339d1d855292826e2e547ab01a31600141094959073e5e10e93ab5
SIZE (php-5.6.27.tar.xz) = 12439168
SHA256 (php-5.5.x-mail-header.patch) = f510672c4bf2c228e4d8c7837e16a82169de82139dcf33fafce51e9e55a1b9ed
SIZE (php-5.5.x-mail-header.patch) = 4426