server: Save whole input history line again.
Signed-off-by: Bernhard Übelacker <bernhardu@mailbox.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3250a17e20
commit
54b237bcef
|
@ -1680,7 +1680,7 @@ DECL_HANDLER(append_console_input_history)
|
|||
struct console_input *console;
|
||||
|
||||
if (!(console = console_input_get( req->handle, FILE_WRITE_PROPERTIES ))) return;
|
||||
console_input_append_hist( console, get_req_data(), get_req_data_size() / sizeof(WCHAR) );
|
||||
console_input_append_hist( console, get_req_data(), get_req_data_size() );
|
||||
release_object( console );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue