Skip to content
Snippets Groups Projects
Commit 54b237bc authored by Bernhard Übelacker's avatar Bernhard Übelacker Committed by Alexandre Julliard
Browse files

server: Save whole input history line again.

parent 3250a17e
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment