From: Timo Sirainen Date: Fri, 9 Sep 2016 15:12:41 +0000 (+0300) Subject: auth: Explicitly ignore return value to make static analyzer happier. X-Git-Tag: 2.3.0.rc1~3034 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8a54e1bb71d9f3cee6935f1ca5067b9fa8e1ee3;p=thirdparty%2Fdovecot%2Fcore.git auth: Explicitly ignore return value to make static analyzer happier. --- diff --git a/src/auth/auth-policy.c b/src/auth/auth-policy.c index 647b0e2a49..c07ac343bc 100755 --- a/src/auth/auth-policy.c +++ b/src/auth/auth-policy.c @@ -223,7 +223,7 @@ void auth_policy_finish(void *ctx) if (context->parser != NULL) { const char *error ATTR_UNUSED; - json_parser_deinit(&(context->parser), &error); + (void)json_parser_deinit(&(context->parser), &error); } if (context->http_request != NULL) http_client_request_abort(&(context->http_request));