fix null check in WolfSSLX509

pull/29/head
Chris Conlon 2020-01-24 11:08:01 -08:00
parent 5809184a8b
commit 3d2a448f6a
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ public class WolfSSLX509 extends X509Certificate {
String tmp = in;
ArrayList<String> list = new ArrayList<String>();
if (in == NULL) {
if (in == null) {
return null;
}