From ae551760917614647ad6fbacec6e4c1b495a94cf Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Mon, 14 Nov 2011 00:36:10 +0000 Subject: Fix some warnings caused by __owur. Temporarily (I hope) remove the more aspirational __owur annotations. --- apps/ts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/ts.c') diff --git a/apps/ts.c b/apps/ts.c index 5fa9f7fda0..ae7604cc69 100644 --- a/apps/ts.c +++ b/apps/ts.c @@ -618,7 +618,8 @@ static int create_digest(BIO *input, char *digest, const EVP_MD *md, { EVP_DigestUpdate(&md_ctx, buffer, length); } - EVP_DigestFinal(&md_ctx, *md_value, NULL); + if (!EVP_DigestFinal(&md_ctx, *md_value, NULL)) + return 0; } else { -- cgit v1.2.3