Commit 54b237bc authored by Bernhard Übelacker's avatar Bernhard Übelacker Committed by Alexandre Julliard

server: Save whole input history line again.

parent 3250a17e
......@@ -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 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment