[utils,passphrase] allow popen

silence clang-analyzer as we require popen for FREERDP_ASKPASS
This commit is contained in:
akallabeth
2024-12-10 18:03:13 +01:00
parent a3db26c57a
commit 25521917e2

View File

@@ -236,6 +236,7 @@ static const char* freerdp_passphrase_read_askpass(const char* prompt, char* buf
(void)sprintf_s(command, sizeof(command), "%s 'FreeRDP authentication\n%s'", askpass_env,
prompt);
// NOLINTNEXTLINE(clang-analyzer-optin.taint.GenericTaint)
FILE* askproc = popen(command, "r");
if (!askproc)
return NULL;