|
@@ -15194,7 +15194,12 @@ int GetOcppServerURL()
|
|
|
{
|
|
|
sprintf(OcppProtocol, "%s", url.scheme);
|
|
|
sprintf(OcppHost, "%s", url.host);
|
|
|
- sprintf(OcppTempPath, "%s", url.path);
|
|
|
+
|
|
|
+ if(url.path == NULL)
|
|
|
+ OcppTempPath[0] = '\0';
|
|
|
+ else
|
|
|
+ sprintf(OcppTempPath, "%s", url.path);
|
|
|
+
|
|
|
if(url.port == 0)
|
|
|
{
|
|
|
if(strcmp(OcppProtocol, "wss") == 0)
|
|
@@ -15219,7 +15224,11 @@ int GetOcppServerURL()
|
|
|
{
|
|
|
sprintf(OcppProtocol, "%s", url.scheme);
|
|
|
sprintf(OcppHost, "%s", url.host);
|
|
|
- sprintf(OcppTempPath, "%s", url.path);
|
|
|
+ if(url.path == NULL)
|
|
|
+ OcppTempPath[0] = '\0';
|
|
|
+ else
|
|
|
+ sprintf(OcppTempPath, "%s", url.path);
|
|
|
+
|
|
|
if(url.port == 0)
|
|
|
{
|
|
|
if(strcmp(OcppProtocol, "wss") == 0)
|