Browse Source

Merge branch 'hardening_client'

Stasik0 10 years ago
parent
commit
00ebb40091
2 changed files with 3 additions and 2 deletions
  1. 2 1
      src/server/ua_server.c
  2. 1 1
      src/ua_types.c

+ 2 - 1
src/server/ua_server.c

@@ -39,8 +39,9 @@ void UA_Server_addNetworkLayer(UA_Server *server, UA_ServerNetworkLayer networkL
     if(networkLayer.discoveryUrl){
         if(server->description.discoveryUrlsSize < 0)
             server->description.discoveryUrlsSize = 0;
+        printf("%d!\n",server->description.discoveryUrlsSize);
 		UA_String* newUrls = UA_realloc(server->description.discoveryUrls,
-                                        sizeof(UA_String)*(server->description.discoveryUrlsSize));
+                                        sizeof(UA_String)*(server->description.discoveryUrlsSize+1));
 		if(!newUrls) {
 			UA_LOG_ERROR(server->logger, UA_LOGGERCATEGORY_SERVER, "Adding discoveryUrl");
 			return;

+ 1 - 1
src/ua_types.c

@@ -621,7 +621,7 @@ static UA_StatusCode testRangeWithVariant(const UA_Variant *v, const UA_NumericR
     for(UA_Int32 i = 0; i < range.dimensionsSize; i++) {
         if(range.dimensions[i].min > range.dimensions[i].max)
             return UA_STATUSCODE_BADINDEXRANGEINVALID;
-        if(range.dimensions[i].max > (UA_UInt32)(dims[i]))
+        if(range.dimensions[i].max > (UA_UInt32)*(dims+i))
             return UA_STATUSCODE_BADINDEXRANGENODATA;
         count *= (range.dimensions[i].max - range.dimensions[i].min) + 1;
     }