fix null check in WolfSSLX509
parent
5809184a8b
commit
3d2a448f6a
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue