* fns.c (Fbase64_decode_string): The decoded result should be
unibyte.
+2000-10-22 15:07:47 ShengHuo ZHU <zsh@cs.rochester.edu>
+
+ * fns.c (Fbase64_decode_string): The decoded result should be
+ unibyte.
+
2000-10-23 Andrew Choi <akochoi@i-cable.com>
* dispextern.h [macintosh]: Include macgui.h instead of macterm.h.
else
decoded = (char *) xmalloc (length);
+ /* The decoded result should be unibyte. */
decoded_length = base64_decode_1 (XSTRING (string)->data, decoded, length,
- STRING_MULTIBYTE (string), NULL);
+ 0, NULL);
if (decoded_length > length)
abort ();
else if (decoded_length >= 0)