diff --git a/package/azure-iot-sdk-c/0001-hmac-c-fix-mismatching-function-prototype.patch b/package/azure-iot-sdk-c/0001-hmac-c-fix-mismatching-function-prototype.patch deleted file mode 100644 index 0c262e6c46..0000000000 --- a/package/azure-iot-sdk-c/0001-hmac-c-fix-mismatching-function-prototype.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 3a7997af72e7a4f70109d1639e6725b39046443e Mon Sep 17 00:00:00 2001 -From: Francesco Giancane <30423178+fgiancane8@users.noreply.github.com> -Date: Fri, 2 Jul 2021 20:47:38 +0200 -Subject: [PATCH] hmac.c: fix mismatching function prototype (#537) - -The reported function raises a warning when compilers assert the flag -`-Warray-parameter=`, signaling that an array-type argument was promoted -to a pointer-type argument. - -While in practice in most C implementations this is correct, fixing the -warning (and, in this case, indicating the maximum size for the array) -would represent a best-practice for finding out-of-bound accesses or -identifying wrongly-sized arrays passed in the function. - -Signed-off-by: Francesco Giancane -[Retrieved from: -https://github.com/Azure/azure-c-shared-utility/commit/3a7997af72e7a4f70109d1639e6725b39046443e] -Signed-off-by: Fabrice Fontaine ---- - src/hmac.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/hmac.c b/src/hmac.c -index 53f2411f8..160af9d2f 100644 ---- a/c-utility/src/hmac.c -+++ b/c-utility/src/hmac.c -@@ -208,7 +208,7 @@ int hmacFinalBits(HMACContext *ctx, - * sha Error Code. - * - */ --int hmacResult(HMACContext *ctx, uint8_t *digest) -+int hmacResult(HMACContext *ctx, uint8_t digest[USHAMaxHashSize]) - { - if (!ctx) return shaNull; - diff --git a/package/azure-iot-sdk-c/azure-iot-sdk-c.hash b/package/azure-iot-sdk-c/azure-iot-sdk-c.hash index 72fa99c44d..5dbb530954 100644 --- a/package/azure-iot-sdk-c/azure-iot-sdk-c.hash +++ b/package/azure-iot-sdk-c/azure-iot-sdk-c.hash @@ -1,5 +1,5 @@ # Locally computed: -sha256 987b469aa76d6c81e5dbcd62e81f4ece0620770930cf65722754c76aedd6049f azure-iot-sdk-c-LTS_01_2021_Ref01-br1.tar.gz +sha256 082e41f7cdf06fec036b8cfa1793f03e81ba527b55ea13c66be0e4cf9f20ff7b azure-iot-sdk-c-LTS_01_2022_Ref01-br1.tar.gz # Hash for license files: sha256 be2e9913fad9ff33607287c728f392579e2a6cc83e51b203ef6274c41db02ee7 LICENSE diff --git a/package/azure-iot-sdk-c/azure-iot-sdk-c.mk b/package/azure-iot-sdk-c/azure-iot-sdk-c.mk index e6de8c851b..874646c445 100644 --- a/package/azure-iot-sdk-c/azure-iot-sdk-c.mk +++ b/package/azure-iot-sdk-c/azure-iot-sdk-c.mk @@ -4,7 +4,7 @@ # ################################################################################ -AZURE_IOT_SDK_C_VERSION = LTS_01_2021_Ref01 +AZURE_IOT_SDK_C_VERSION = LTS_01_2022_Ref01 AZURE_IOT_SDK_C_SITE = https://github.com/Azure/azure-iot-sdk-c AZURE_IOT_SDK_C_SITE_METHOD = git AZURE_IOT_SDK_C_GIT_SUBMODULES = YES