Commit 19d54134 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

refs[t:2654] fix a NULL pointer deref found by valgrind brtloader-test-open

git-svn-id: file:///svn/toku/tokudb@20672 c7de825b-a66e-492c-adef-691d508d4ae1
parent cc0e8e27
......@@ -315,10 +315,13 @@ void toku_brtloader_internal_destroy (BRTLOADER bl, BOOL is_error) {
destroy_merge_fileset(&bl->fs[i]);
toku_free(bl->fs);
for (int i=0; i < bl->N; i++) {
toku_free(bl->last_key[i].data);
if (bl->last_key) {
for (int i=0; i < bl->N; i++) {
toku_free(bl->last_key[i].data);
}
toku_free(bl->last_key);
bl->last_key = NULL;
}
toku_free(bl->last_key);
destroy_rowset(&bl->primary_rowset);
......
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