aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2000-08-16 01:36:35 +0000
committerKenichi Handa <[email protected]>2000-08-16 01:36:35 +0000
commit904a2edd5c4fdf7a584252b3f0e1fe21bd4f7f1f (patch)
treedfd1a2c4970d29226a713bb3acda68525a8c4f5e /src
parent290602fd0af3deaf34ac60d9b4f3165d01381f7f (diff)
(CCL_WRITE_CHAR): If CH is eight-bit-control char, decrement dst_end
to avoid buffer overflow in the later call of string_as_multibyte
Diffstat (limited to 'src')
-rw-r--r--src/ccl.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ccl.c b/src/ccl.c
index c99c0a5414..c56798f1a5 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -685,7 +685,13 @@ static tr_stack *mapping_stack_pointer;
*dst++ = '\n'; \
} \
else if (bytes == 1) \
- *dst++ = (ch); \
+ { \
+ *dst++ = (ch); \
+ if ((ch) >= 0x80 && (ch) < 0xA0) \
+ /* We may have to convert this eight-bit char to \
+ multibyte form later. */ \
+ dst_end--; \
+ } \
else \
dst += CHAR_STRING (ch, dst); \
} \