mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/SOAP: Fix new/free mismatch reported by ASan
(cherry picked from commit 2a12e96d17)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user