Explorar o código

bugfix, for some reason the secureChannelId was not initialized

FlorianPalm %!s(int64=10) %!d(string=hai) anos
pai
achega
70cdb0895b
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      src/server/ua_server_binary.c

+ 4 - 1
src/server/ua_server_binary.c

@@ -170,10 +170,13 @@ static void processMSG(UA_Connection *connection, UA_Server *server, const UA_By
 #ifdef EXTENSION_STATELESS
     UA_SecureChannel dummyChannel;
     UA_SecureChannel_init(&dummyChannel);
+    //fixme: why are the following two lines not initialized by the _init function
+    dummyChannel.securityToken.channelId = 0;
+    dummyChannel.securityToken.tokenId = 0;
     if(secureChannelId == 0 || !clientChannel){
         clientChannel = &dummyChannel;
         clientSession = &anonymousSession;
-    }
+    } 
 #endif
     if(!clientSession && clientChannel)
         clientSession = clientChannel->session;