diff options
Diffstat (limited to 'src/w32select.c')
| -rw-r--r-- | src/w32select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32select.c b/src/w32select.c index 699c72b71a8..1d4a6f41bdd 100644 --- a/src/w32select.c +++ b/src/w32select.c | |||
| @@ -216,7 +216,7 @@ convert_to_handle_as_coded (Lisp_Object coding_system) | |||
| 216 | 216 | ||
| 217 | setup_windows_coding_system (coding_system, &coding); | 217 | setup_windows_coding_system (coding_system, &coding); |
| 218 | coding.dst_bytes = SBYTES (current_text) * 2; | 218 | coding.dst_bytes = SBYTES (current_text) * 2; |
| 219 | coding.destination = (unsigned char *) xmalloc (coding.dst_bytes); | 219 | coding.destination = xmalloc (coding.dst_bytes); |
| 220 | encode_coding_object (&coding, current_text, 0, 0, | 220 | encode_coding_object (&coding, current_text, 0, 0, |
| 221 | SCHARS (current_text), SBYTES (current_text), Qnil); | 221 | SCHARS (current_text), SBYTES (current_text), Qnil); |
| 222 | 222 | ||