[SCM] pd-lua/master: Backported patch to fix format-security errors

umlaeute at users.alioth.debian.org umlaeute at users.alioth.debian.org
Sun Jan 24 21:29:57 UTC 2016


The following commit has been merged in the master branch:
commit 67d1edc0190c8ed044a76f10c10dc2d9f3bb6361
Author: IOhannes m zmölnig <zmoelnig at umlautQ.umlaeute.mur.at>
Date:   Sun Jan 24 22:00:39 2016 +0100

    Backported patch to fix format-security errors

diff --git a/debian/patches/format-security.patch b/debian/patches/format-security.patch
new file mode 100644
index 0000000..1584434
--- /dev/null
+++ b/debian/patches/format-security.patch
@@ -0,0 +1,22 @@
+Description: fix format-security errors
+Author: IOhannes m zmölnig
+Origin: upstream
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- pd-lua.orig/pdlua.c
++++ pd-lua/pdlua.c
+@@ -1643,10 +1643,10 @@
+     post(compiled);
+     post(luaversionStr);
+ #else
+-    logpost(NULL, 3, pdluaver);
+-    logpost(NULL, 3, luaver);
+-    logpost(NULL, 3, compiled);
+-    logpost(NULL, 3, luaversionStr);
++    logpost(NULL, 3, "%s", pdluaver);
++    logpost(NULL, 3, "%s", luaver);
++    logpost(NULL, 3, "%s", compiled);
++    logpost(NULL, 3, "%s", luaversionStr);
+ #endif
+     pdlua_proxyinlet_setup();
+     PDLUA_DEBUG("pdlua pdlua_proxyinlet_setup done", 0);
diff --git a/debian/patches/series b/debian/patches/series
index e69de29..96ffb92 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -0,0 +1 @@
+format-security.patch

-- 
pd-lua packaging



More information about the pkg-multimedia-commits mailing list