Module: wine Branch: master Commit: 51d17bfd2f47ff65cd48a02d5bfc476a96c1f23f URL: http://source.winehq.org/git/wine.git/?a=commit;h=51d17bfd2f47ff65cd48a02d5b...
Author: Sebastian Lackner sebastian@fds-team.de Date: Thu Oct 29 01:32:25 2015 +0100
server: Remove a wrong release_object in write_console_input.
Signed-off-by: Sebastian Lackner sebastian@fds-team.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
server/console.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/server/console.c b/server/console.c index 10b1350..78e91d6 100644 --- a/server/console.c +++ b/server/console.c @@ -632,7 +632,6 @@ static int write_console_input( struct console_input* console, int count, (console->recnum + count) * sizeof(INPUT_RECORD) ))) { set_error( STATUS_NO_MEMORY ); - release_object( console ); return -1; } console->records = new_rec;