Commit 84723e0f authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

Change a MALLOC to an XMALLOC. Refs #2623. [t:2623]

git-svn-id: file:///svn/toku/tokudb@20347 c7de825b-a66e-492c-adef-691d508d4ae1
parent d57849d9
......@@ -1453,8 +1453,7 @@ static int merge_some_files_using_dbufio (const BOOL to_q, FIDX dest_data, QUEUE
struct rowset *output_rowset = NULL;
if (to_q) {
MALLOC(output_rowset);
assert(output_rowset);
XMALLOC(output_rowset);
int r = init_rowset(output_rowset, memory_per_rowset(bl));
assert(r==0);
}
......
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