소스 검색

possible fix for issue #1285

StalderT 7 년 전
부모
커밋
61751b4bda
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/server/ua_server_ns0.c

+ 1 - 1
src/server/ua_server_ns0.c

@@ -581,7 +581,7 @@ UA_Server_initNS0(UA_Server *server) {
 
     retVal |= writeNs0VariableArray(server, UA_NS0ID_SERVER_SERVERCAPABILITIES_SERVERPROFILEARRAY,
                                     profileArray, profileArraySize, &UA_TYPES[UA_TYPES_STRING]);
-    for (int i=0; i<4; i++) {
+    for (int i=0; i<profileArraySize; i++) {
         UA_String_deleteMembers(&profileArray[i]);
     }