handling to copy the killed characters to the kill buffer as
UCS4 stored as grub_uint32_t rather than as 8-bit characters
stored as char. Eliminates UCS4 truncation and corruption
observed when killing characters with Ctrl-u and yanking them
back with Ctrl-y.
+2013-05-30 Josh Triplett <josh@joshtriplett.org>
+
+ * grub-core/normal/cmdline.c (grub_cmdline_get): Fix Ctrl-u
+ handling to copy the killed characters to the kill buffer as
+ UCS4 stored as grub_uint32_t rather than as 8-bit characters
+ stored as char. Eliminates UCS4 truncation and corruption
+ observed when killing characters with Ctrl-u and yanking them
+ back with Ctrl-y.
+
2013-05-30 Vladimir Serbinenko <phcoder@gmail.com>
Detach optional parts of gfxterm and integrate in with coreboot init.
grub_free (kill_buf);
- kill_buf = grub_malloc (n + 1);
+ kill_buf = grub_malloc ((n + 1) * sizeof(grub_uint32_t));
if (grub_errno)
{
grub_print_error ();
}
if (kill_buf)
{
- grub_memcpy (kill_buf, buf, n);
- kill_buf[n] = '\0';
+ grub_memcpy (kill_buf, buf, n * sizeof(grub_uint32_t));
+ kill_buf[n] = 0;
}
lpos = 0;