xmlrpc-c: 1.59.01 -> 1.60.03

Update xmlrpc-c from 1.59.01 to latest stable version 1.60.03. The
SRCREV is one more fix commit after release 1.60.03 in the stable
series. And remove 0002-fix-formatting-issues.patch which has been fixed
in upstream.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Kai Kang 2024-10-08 15:52:35 +08:00 committed by Khem Raj
parent 1c346f1829
commit ca7ea3ed02
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 2 additions and 37 deletions

View File

@ -1,34 +0,0 @@
From 14f15cb0f03defa8efb4c8e2fece58e50655be6b Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Sun, 23 Jul 2017 22:20:29 -0400
Subject: [PATCH] src/xmlrpc_server_abyss.c: fix formatting issues
Fixed when compile with "-Wformat -Wformat-security -Werror=format-security":
|src/xmlrpc_server_abyss.c:771:13: error: format not a string literal
and no format arguments [-Werror=format-security]
| xmlrpc_faultf(envP, error);
| ^~~~~~~~~~~~~
Upstream-Status: Pending
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
src/xmlrpc_server_abyss.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/xmlrpc_server_abyss.c b/src/xmlrpc_server_abyss.c
index 2388652..3843f10 100644
--- a/src/xmlrpc_server_abyss.c
+++ b/src/xmlrpc_server_abyss.c
@@ -768,7 +768,7 @@ createServer(xmlrpc_env * const envP,
ServerInit2(abyssServerP, &error);
if (error) {
- xmlrpc_faultf(envP, error);
+ xmlrpc_faultf(envP, "%s", error);
xmlrpc_strfree(error);
}
}
--
2.8.1

View File

@ -7,10 +7,9 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=aefbf81ba0750f02176b6f86752ea951"
SRC_URI = "git://github.com/mirror/xmlrpc-c.git;branch=master;protocol=https \
file://0001-test-cpp-server_abyss-Fix-build-with-clang-libc.patch \
file://0002-fix-formatting-issues.patch \
"
#Release 1.59.01
SRCREV = "352aeaa9ae49e90e55187cbda839f2113df06278"
# one more commit after Release 1.60.03 in the Stable series
SRCREV = "a823b0bb5cf0a4dbd34f929cbfdfb0439c5d9b0e"
S = "${WORKDIR}/git/stable"