summaryrefslogtreecommitdiff
path: root/relaxng.c
diff options
context:
space:
mode:
authorDavid Kilzer <ddkilzer@webkit.org>2016-05-13 15:13:17 +0800
committerDaniel Veillard <veillard@redhat.com>2016-05-23 15:01:07 +0800
commit4472c3a5a5b516aaf59b89be602fbce52756c3e9 (patch)
treeb83bf5b5475e109c76d7156783ae6acb8a3c2859 /relaxng.c
parentbeca86e8c86984b967a6efa05a9653470253edda (diff)
downloadlibxml2-4472c3a5a5b516aaf59b89be602fbce52756c3e9.tar.gz
Fix some format string warnings with possible format string vulnerability
For https://bugzilla.gnome.org/show_bug.cgi?id=761029 Decorate every method in libxml2 with the appropriate LIBXML_ATTR_FORMAT(fmt,args) macro and add some cleanups following the reports.
Diffstat (limited to 'relaxng.c')
-rw-r--r--relaxng.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/relaxng.c b/relaxng.c
index 5779e7fc..345f354a 100644
--- a/relaxng.c
+++ b/relaxng.c
@@ -507,7 +507,7 @@ xmlRngVErrMemory(xmlRelaxNGValidCtxtPtr ctxt, const char *extra)
*
* Handle a Relax NG Parsing error
*/
-static void
+static void LIBXML_ATTR_FORMAT(4,0)
xmlRngPErr(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node, int error,
const char *msg, const xmlChar * str1, const xmlChar * str2)
{
@@ -541,7 +541,7 @@ xmlRngPErr(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr node, int error,
*
* Handle a Relax NG Validation error
*/
-static void
+static void LIBXML_ATTR_FORMAT(4,0)
xmlRngVErr(xmlRelaxNGValidCtxtPtr ctxt, xmlNodePtr node, int error,
const char *msg, const xmlChar * str1, const xmlChar * str2)
{