소스 검색

repairing stateless ext

Stasik0 10 년 전
부모
커밋
7a1ea14cdb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/server/ua_server_binary.c

+ 1 - 1
src/server/ua_server_binary.c

@@ -174,7 +174,7 @@ static void processMSG(UA_Connection *connection, UA_Server *server, const UA_By
     UA_SecureChannel anonymousChannel;
     if(!clientChannel) {
         UA_SecureChannel_init(&anonymousChannel);
-        anonymousChannel->session = &anonymousSession;
+        anonymousChannel.session = &anonymousSession;
         clientChannel = &anonymousChannel;
     }
 #endif