mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-31 21:09:17 +01:00
Fix for possible uninitialized use of prev.
This commit is contained in:
@@ -17273,7 +17273,7 @@ void FreeOcspRequest(OcspRequest* req)
|
||||
int CompareOcspReqResp(OcspRequest* req, OcspResponse* resp)
|
||||
{
|
||||
int cmp;
|
||||
CertStatus *status, *next, *prev, *top;
|
||||
CertStatus *status, *next, *prev = NULL, *top;
|
||||
|
||||
WOLFSSL_ENTER("CompareOcspReqResp");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user