Fix some warnings caused by __owur. Temporarily (I hope) remove the more
aspirational __owur annotations.
diff --git a/apps/enc.c b/apps/enc.c
index 076225c..8c55277 100644
--- a/apps/enc.c
+++ b/apps/enc.c
@@ -549,9 +549,13 @@
sptr = salt;
}
- EVP_BytesToKey(cipher,dgst,sptr,
- (unsigned char *)str,
- strlen(str),1,key,iv);
+ if (!EVP_BytesToKey(cipher,dgst,sptr,
+ (unsigned char *)str,
+ strlen(str),1,key,iv))
+ {
+ BIO_printf(bio_err, "EVP_BytesToKey failed\n");
+ goto end;
+ }
/* zero the complete buffer or the string
* passed from the command line
* bug picked up by