Explorar el Código

use connection->releaseSendBuffer everywhere

Julius Pfrommer hace 6 años
padre
commit
6f689994e1
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/ua_securechannel.c

+ 2 - 1
src/ua_securechannel.c

@@ -664,7 +664,8 @@ UA_MessageContext_finish(UA_MessageContext *mc) {
 
 void
 UA_MessageContext_abort(UA_MessageContext *mc) {
-    UA_ByteString_deleteMembers(&mc->messageBuffer);
+    UA_Connection *connection = mc->channel->connection;
+    connection->releaseSendBuffer(connection, &mc->messageBuffer);
 }
 
 UA_StatusCode