Explorar el Código

fix gerCertPool() on windows

Darien Raymond hace 7 años
padre
commit
cc513c1002
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      transport/internet/tls/config_windows.go

+ 1 - 1
transport/internet/tls/config_windows.go

@@ -10,5 +10,5 @@ func (c *Config) getCertPool() (*x509.CertPool, error) {
 		return c.loadSelfCertPool()
 	}
 
-	return nil
+	return nil, nil
 }