diff options
| author | Joakim Verona | 2012-07-27 02:22:03 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-07-27 02:22:03 +0200 |
| commit | 5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f (patch) | |
| tree | 5c55f1096a656a9759f0b53a0b5d1a2289bd366f /src/w32select.c | |
| parent | 0c5c85cf2b350c965bb1ffa5b2d77c2adebc406b (diff) | |
| parent | 562157c814037dcba58a20cd6908a95992c22283 (diff) | |
| download | emacs-5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f.tar.gz emacs-5fb63197843dcae66f2fe0ddd6f4a9d560e9db2f.zip | |
upstream
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 | ||