commit | 0118a1d7126e4f52bf7573507adffbb4c2cf0417 | [log] [tgz] |
---|---|---|
author | Chien Wong <m@xv97.com> | Tue Aug 01 21:38:46 2023 +0800 |
committer | Chien Wong <m@xv97.com> | Thu Aug 17 22:13:11 2023 +0800 |
tree | aca2b8fb265793f7c4be8831c9a41dc6d9e8754d | |
parent | 7740eaf32fc2338e9efb2469ec0a351e96224ba9 [diff] [blame] |
Fix a few unchecked return values Signed-off-by: Chien Wong <m@xv97.com>
diff --git a/library/bignum.c b/library/bignum.c index 5dca3a9..67add49 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -2328,7 +2328,7 @@ /* * Load the result in the output variable. */ - mbedtls_mpi_copy(X, &W[x_index]); + MBEDTLS_MPI_CHK(mbedtls_mpi_copy(X, &W[x_index])); cleanup: