[client,common] fix sso_mib_get_access_token return value in error case

Use FALSE instead of ERROR_INTERNAL_ERROR which could be interpreted
as "truthy" at the respective call site.
This commit is contained in:
Andreas Ziegler
2025-07-14 13:22:45 +02:00
parent ca553e9275
commit 9083947d9c

View File

@@ -149,7 +149,7 @@ static BOOL sso_mib_get_access_token(rdpContext* context, AccessTokenType tokenT
}
if (!client_context->mibClientWrapper->app)
return ERROR_INTERNAL_ERROR;
return FALSE;
const char* scope = NULL;
const char* req_cnf = NULL;