Explorar el Código

fix missing close(connection)

StalderT hace 7 años
padre
commit
46dc5d959c
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      plugins/ua_network_tcp.c

+ 1 - 0
plugins/ua_network_tcp.c

@@ -199,6 +199,7 @@ connection_recv(UA_Connection *connection, UA_ByteString *response,
     /* The remote side closed the connection */
     if(ret == 0) {
         UA_ByteString_deleteMembers(response);
+        connection->close(connection);
         return UA_STATUSCODE_BADCONNECTIONCLOSED;
     }