1 Disable wide-char specific code
3 The vast majority of the libxmlrpc code nicely handles the absence of
4 wide char support, except at one location, which is fixed by this
7 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 Index: b/src/xmlrpc_decompose.c
10 ===================================================================
11 --- a/src/xmlrpc_decompose.c
12 +++ b/src/xmlrpc_decompose.c
14 xmlrpc_strfree(*decompRootP->store.Tstring.valueP);
17 +#if HAVE_UNICODE_WCHAR
18 free((void*)*decompRootP->store.TwideString.valueP);
20 + XMLRPC_ASSERT(false);
24 free((void*)*decompRootP->store.TbitString.valueP);