Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
3.6.2
-
None
-
None
Description
There is memory leak in the SSL support of Zookeeper C Client, see below code (line 1457 of zookeeper.c):
zcert.ca = strtok(strdup(cert), ",");
In the above code, memory is allocated by calling strdup, but it's never been released.