Fix compile error with IDF and mbedtls debug off

This commit is contained in:
me-no-dev
2017-02-28 23:18:03 +02:00
parent 00c1a65612
commit bcd6dcf5f6
2 changed files with 5 additions and 3 deletions

View File

@ -39,6 +39,7 @@ WiFiClientSecure::WiFiClientSecure()
_CA_cert = NULL;
_cert = NULL;
_private_key = NULL;
next = NULL;
}
@ -57,6 +58,7 @@ WiFiClientSecure::WiFiClientSecure(int sock)
_CA_cert = NULL;
_cert = NULL;
_private_key = NULL;
next = NULL;
}
WiFiClientSecure::~WiFiClientSecure()