aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index b0359b89cb5..891fea09abf 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -8006,7 +8006,7 @@ encode_coding_object (struct coding_system *coding,
8006 { 8006 {
8007 ptrdiff_t dst_bytes = max (1, coding->src_chars); 8007 ptrdiff_t dst_bytes = max (1, coding->src_chars);
8008 coding->dst_object = Qnil; 8008 coding->dst_object = Qnil;
8009 coding->destination = (unsigned char *) xmalloc (dst_bytes); 8009 coding->destination = xmalloc (dst_bytes);
8010 coding->dst_bytes = dst_bytes; 8010 coding->dst_bytes = dst_bytes;
8011 coding->dst_multibyte = 0; 8011 coding->dst_multibyte = 0;
8012 } 8012 }