Commit 54c356e0 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #2217 refs[t:2217] Fix memory leak in test.

git-svn-id: file:///svn/toku/tokudb@16109 c7de825b-a66e-492c-adef-691d508d4ae1
parent 5bdc180c
......@@ -136,6 +136,7 @@ get_file_pathname(void) {
int r = env->get_iname(env, &dname, &iname);
CKERR(r);
sprintf(path, "%s/%s", ENVDIR, (char*)iname.data);
toku_free(iname.data);
if (verbose) printf("path = %s\n", path);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment