Sfoglia il codice sorgente

do not overwrite endpoint uri

Stasik0 10 anni fa
parent
commit
a1671e42da
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      src/server/ua_server.c

+ 2 - 1
src/server/ua_server.c

@@ -62,7 +62,8 @@ void UA_Server_addNetworkLayer(UA_Server *server, UA_ServerNetworkLayer networkL
                        &server->description.discoveryUrls[server->description.discoveryUrlsSize]);
         server->description.discoveryUrlsSize++;
         for(UA_Int32 i = 0; i < server->endpointDescriptionsSize; i++)
-            UA_String_copy(networkLayer.discoveryUrl, &server->endpointDescriptions[i].endpointUrl);
+            if(!server->endpointDescriptions[i].endpointUrl.data)
+                UA_String_copy(networkLayer.discoveryUrl, &server->endpointDescriptions[i].endpointUrl);
     }
 }