From ff26a904899f05ffaeab0f063cf6a35b2d4be27f Mon Sep 17 00:00:00 2001 From: Bernhard Miklautz Date: Mon, 28 Jul 2014 18:49:18 +0200 Subject: [PATCH] return status instead of returning directly --- client/common/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/common/client.c b/client/common/client.c index baa6d5b89..3f2da9a88 100644 --- a/client/common/client.c +++ b/client/common/client.c @@ -169,7 +169,7 @@ int freerdp_client_settings_parse_command_line(rdpSettings* settings, int argc, /* This function will call logic that is applicable to the settings * from command line parsing AND the rdp file parsing */ if(!freerdp_client_settings_post_process(settings)) - return -1; + status = -1; return status; }