Core/SOAP: Fix new/free mismatch reported by ASan

This commit is contained in:
jackpoz
2021-07-30 17:54:46 +02:00
committed by Ovahlord
parent f9fafbab7d
commit 24d4e6977c

View File

@@ -66,8 +66,7 @@ void process_message(struct soap* soap_message)
soap_serve(soap_message);
soap_destroy(soap_message); // dealloc C++ data
soap_end(soap_message); // dealloc data and clean up
soap_done(soap_message); // detach soap struct
free(soap_message);
soap_free(soap_message); // detach soap struct and free up the memory
}
/*
Code used for generating stubs: