Coverage exclusion -- this is just an extra, redundant check

This commit is contained in:
Frank Denis
2017-12-11 20:08:56 +01:00
parent bdca518edc
commit bd9e859e52
@@ -48,7 +48,7 @@ crypto_scalarmult_ed25519(unsigned char *q, const unsigned char *n,
ge25519_scalarmult(&Q, t, &P);
ge25519_p3_tobytes(q, &Q);
if (_crypto_scalarmult_ed25519_is_inf(q) != 0) {
return -1;
return -1; /* LCOV_EXCL_LINE */
}
return 0;
}