Commit 91dbbc63 authored by Yoni Fogel's avatar Yoni Fogel

[t:2418] Fixed missing va_end in construct_full_name found by coverity

git-svn-id: file:///svn/toku/tokudb@18137 c7de825b-a66e-492c-adef-691d508d4ae1
parent 78ce69f0
...@@ -3873,6 +3873,7 @@ static char *construct_full_name(int count, ...) { ...@@ -3873,6 +3873,7 @@ static char *construct_full_name(int count, ...) {
name = newname; name = newname;
} }
} }
va_end(ap);
return name; return name;
} }
......
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