summaryrefslogtreecommitdiff
path: root/testModule.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 /testModule.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 'testModule.c')
-rw-r--r--testModule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testModule.c b/testModule.c
index e399f5c0..77b7ba10 100644
--- a/testModule.c
+++ b/testModule.c
@@ -47,7 +47,7 @@ int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
/* build the module filename, and confirm the module exists */
xmlStrPrintf(filename, sizeof(filename),
- (const xmlChar*) "%s/testdso%s",
+ "%s/testdso%s",
(const xmlChar*)MODULE_PATH,
(const xmlChar*)LIBXML_MODULE_EXTENSION);