Skip to content

Commit c6010d1

Browse files
levittemattcaswell
authored andcommitted
providers/implementations/exchange/kdf_exch.c: fix unavailable SIZE_MAX
SIZE_MAX is used in a recent fix of this file, but without including internal/numbers.h, so that macro ends up not existing on some platforms, resulting in build failures. Reviewed-by: Tomas Mraz <[email protected]> Reviewed-by: Dmitry Belyavskiy <[email protected]> Reviewed-by: Paul Dale <[email protected]> (Merged from openssl#18605)
1 parent 8547cd6 commit c6010d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

providers/implementations/exchange/kdf_exch.c

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include <openssl/err.h>
1515
#include <openssl/proverr.h>
1616
#include <openssl/params.h>
17+
#include "internal/numbers.h"
1718
#include "prov/implementations.h"
1819
#include "prov/provider_ctx.h"
1920
#include "prov/kdfexchange.h"

0 commit comments

Comments
 (0)