Module: wine Branch: master Commit: a69d7b29e3e4c81b6baa9ca5ee063fe59877f343 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a69d7b29e3e4c81b6baa9ca5ee...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Feb 2 21:46:46 2016 +0900
server: Don't return an error if the created window station already exists.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
server/winstation.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/server/winstation.c b/server/winstation.c index 00f0e9b..9384b32 100644 --- a/server/winstation.c +++ b/server/winstation.c @@ -125,6 +125,7 @@ static struct winstation *create_winstation( struct directory *root, const struc return NULL; } } + else clear_error(); } return winstation; }