mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Merge pull request #3668 from SparkiDev/jenkins_fixes_2
Compress: fix unused vars
This commit is contained in:
@ -217,6 +217,9 @@ int wc_DeCompressDynamic(byte** out, int maxSz, int memoryType,
|
|||||||
word32 tmpSz = 0;
|
word32 tmpSz = 0;
|
||||||
byte* tmp;
|
byte* tmp;
|
||||||
|
|
||||||
|
(void)memoryType;
|
||||||
|
(void)heap;
|
||||||
|
|
||||||
if (out == NULL || in == NULL) {
|
if (out == NULL || in == NULL) {
|
||||||
return BAD_FUNC_ARG;
|
return BAD_FUNC_ARG;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user