mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-30 13:47:13 +01:00
Merge branch 'maint'
* maint: Fix memory leak under Windows
This commit is contained in:
1
AUTHORS
1
AUTHORS
@@ -41,6 +41,7 @@ Piotr Trojanek <piotr.trojanek@gmail.com>
|
|||||||
Sebastian Otaegui <feniix@gmail.com>
|
Sebastian Otaegui <feniix@gmail.com>
|
||||||
Steven McCoy <steven.mccoy@miru.hk>
|
Steven McCoy <steven.mccoy@miru.hk>
|
||||||
Tamara Kustarova <kustarova.tamara@gmail.com>
|
Tamara Kustarova <kustarova.tamara@gmail.com>
|
||||||
|
Taras Shpot <taras.shpot@eleks.com>
|
||||||
Tero Marttila <terom@fixme.fi>
|
Tero Marttila <terom@fixme.fi>
|
||||||
Terry Wilson <terry@logivox.net>
|
Terry Wilson <terry@logivox.net>
|
||||||
Vitaly Mayatskikh <v.mayatskih@gmail.com>
|
Vitaly Mayatskikh <v.mayatskih@gmail.com>
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ zmq::uuid_t::uuid_t ()
|
|||||||
|
|
||||||
zmq::uuid_t::~uuid_t ()
|
zmq::uuid_t::~uuid_t ()
|
||||||
{
|
{
|
||||||
|
if (string_buf)
|
||||||
|
RpcStringFree (&string_buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *zmq::uuid_t::to_string ()
|
const char *zmq::uuid_t::to_string ()
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ namespace zmq
|
|||||||
enum { uuid_string_len = 36 };
|
enum { uuid_string_len = 36 };
|
||||||
|
|
||||||
// Returns a pointer to buffer containing the textual
|
// Returns a pointer to buffer containing the textual
|
||||||
// representation of the UUID. The caller is reponsible to
|
// representation of the UUID. The callee is reponsible to
|
||||||
// free the allocated memory.
|
// free the allocated memory.
|
||||||
const char *to_string ();
|
const char *to_string ();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user