Skip to content
Snippets Groups Projects
Commit 67d1edc0 authored by IOhannes m zmölnig's avatar IOhannes m zmölnig
Browse files

Backported patch to fix format-security errors

parent 3bde8ac8
No related branches found
No related tags found
No related merge requests found
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);
format-security.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment