Bernhard Übelacker : server: Save whole input history line again.
Module: wine Branch: master Commit: 54b237bcef7db689c97a3c3dfa7c88d567eac564 URL: https://source.winehq.org/git/wine.git/?a=commit;h=54b237bcef7db689c97a3c3df... Author: Bernhard Übelacker <bernhardu(a)mailbox.org> Date: Fri May 8 11:44:54 2020 +0200 server: Save whole input history line again. Signed-off-by: Bernhard Übelacker <bernhardu(a)mailbox.org> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- server/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/console.c b/server/console.c index 5feb1c2ba7..302be6a1c1 100644 --- a/server/console.c +++ b/server/console.c @@ -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 ); }
participants (1)
-
Alexandre Julliard