server: Save whole input history line again.

Signed-off-by: Bernhard Übelacker <bernhardu@mailbox.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Bernhard Übelacker 2020-05-08 11:44:54 +02:00 committed by Alexandre Julliard
parent 3250a17e20
commit 54b237bcef
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}