BUG: This is weird, but marquee does not seem to handle base64 with new lines

This commit is contained in:
Andy Cedilnik 2005-03-09 18:07:10 -05:00
parent 630b6353cd
commit b81639cf90
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ xmlrpc_serialize_base64_data (xmlrpc_env *env,
size_t size;
/* Encode the data. */
encoded = xmlrpc_base64_encode(env, data, len);
encoded = xmlrpc_base64_encode_without_newlines(env, data, len);
XMLRPC_FAIL_IF_FAULT(env);
contents = XMLRPC_TYPED_MEM_BLOCK_CONTENTS(unsigned char, encoded);
size = XMLRPC_TYPED_MEM_BLOCK_SIZE(unsigned char, encoded);