Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
027eed41
Commit
027eed41
authored
Oct 15, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'maint'
* maint: Fix memory leak under Windows
parents
2e9871ce
6e952053
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
AUTHORS
AUTHORS
+1
-0
uuid.cpp
src/uuid.cpp
+2
-0
uuid.hpp
src/uuid.hpp
+1
-1
No files found.
AUTHORS
View file @
027eed41
...
...
@@ -41,6 +41,7 @@ Piotr Trojanek <piotr.trojanek@gmail.com>
Sebastian Otaegui <feniix@gmail.com>
Steven McCoy <steven.mccoy@miru.hk>
Tamara Kustarova <kustarova.tamara@gmail.com>
Taras Shpot <taras.shpot@eleks.com>
Tero Marttila <terom@fixme.fi>
Terry Wilson <terry@logivox.net>
Vitaly Mayatskikh <v.mayatskih@gmail.com>
...
...
src/uuid.cpp
View file @
027eed41
...
...
@@ -41,6 +41,8 @@ zmq::uuid_t::uuid_t ()
zmq
::
uuid_t
::~
uuid_t
()
{
if
(
string_buf
)
RpcStringFree
(
&
string_buf
);
}
const
char
*
zmq
::
uuid_t
::
to_string
()
...
...
src/uuid.hpp
View file @
027eed41
...
...
@@ -58,7 +58,7 @@ namespace zmq
enum
{
uuid_string_len
=
36
};
// Returns a pointer to buffer containing the textual
// representation of the UUID. The calle
r
is reponsible to
// representation of the UUID. The calle
e
is reponsible to
// free the allocated memory.
const
char
*
to_string
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment