From c4c04080096b8b937cc94f320c70d5699c273c28 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 8 Oct 2019 09:42:30 +0200 Subject: - update to 0.4.0 - drop patches merged upstream - open https://github.com/Letargie/pggi/pull/14 fix various build warnings --- 11.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 11.patch (limited to '11.patch') diff --git a/11.patch b/11.patch deleted file mode 100644 index 7ca05a5..0000000 --- a/11.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 432848cca35a4edd8ce775cb6531592783e3450d Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Mon, 11 Jun 2018 14:56:08 +0200 -Subject: [PATCH] Fix: src/gdk/gpixbuf.c:120:3: error: format not a string - literal and no format arguments [-Werror=format-security] - ---- - src/gdk/gpixbuf.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/gdk/gpixbuf.c b/src/gdk/gpixbuf.c -index 04871da..2c7303c 100755 ---- a/src/gdk/gpixbuf.c -+++ b/src/gdk/gpixbuf.c -@@ -117,7 +117,7 @@ GPIXBUF_METHOD(createFromFile){ - pix = gdk_pixbuf_new_from_file_at_scale (filename, width, height, preserve_ratio, &error); - } - if(!pix){ -- zend_throw_exception_ex(pggi_exception_get(), 0, error->message); -+ zend_throw_exception_ex(pggi_exception_get(), 0, "%s", error->message); - return; - } - zval * new_pixbuf; -- cgit