mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-05 13:44:41 +02:00
sp pragram around sanity check for vcpkg build warning
This commit is contained in:
@@ -4822,6 +4822,10 @@ int sp_copy(const sp_int* a, sp_int* r)
|
|||||||
}
|
}
|
||||||
/* Only copy if different pointers. */
|
/* Only copy if different pointers. */
|
||||||
else if (a != r) {
|
else if (a != r) {
|
||||||
|
PRAGMA_GCC_DIAG_PUSH
|
||||||
|
PRAGMA_GCC("GCC diagnostic ignored \"-Wstrict-overflow\"")
|
||||||
|
/* Surrounded in gcc pragma to avoid -Werror=strict-overflow when the
|
||||||
|
* compiler optimizes out the check and assumes no overflow. */
|
||||||
/* Validated space in result. */
|
/* Validated space in result. */
|
||||||
if (a->used > r->size) {
|
if (a->used > r->size) {
|
||||||
err = MP_VAL;
|
err = MP_VAL;
|
||||||
@@ -4841,6 +4845,7 @@ int sp_copy(const sp_int* a, sp_int* r)
|
|||||||
r->sign = a->sign;
|
r->sign = a->sign;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
PRAGMA_GCC_DIAG_POP
|
||||||
}
|
}
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
|
Reference in New Issue
Block a user