# HG changeset patch # User Kenichi Handa # Date 1021381374 0 # Node ID 0ac97e7062f5702ef73dd60ad00d16fc4940b989 # Parent 2099aaefdcbb5b834553c811647969eb8d0428c4 (x_encode_text): Allocate coding.destination here, and call encode_coding_object with dst_object Qnil. diff -r 2099aaefdcbb -r 0ac97e7062f5 src/xfns.c --- a/src/xfns.c Tue May 14 11:51:08 2002 +0000 +++ b/src/xfns.c Tue May 14 13:02:54 2002 +0000 @@ -2378,12 +2378,14 @@ coding.mode |= (CODING_MODE_SAFE_ENCODING | CODING_MODE_LAST_BLOCK); /* We suppress producing escape sequences for composition. */ coding.common_flags &= ~CODING_ANNOTATION_MASK; + coding.dst_bytes = XSTRING (string)->size * 2; + coding.destination = (unsigned char *) xmalloc (coding.dst_bytes); encode_coding_object (&coding, string, 0, 0, XSTRING (string)->size, - STRING_BYTES (XSTRING (string)), Qt); + STRING_BYTES (XSTRING (string)), Qnil); *text_bytes = coding.produced; *stringp = (result == 1 || !EQ (coding_system, Qcompound_text)); - return XSTRING (coding.dst_object)->data; + return coding.destination; }