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

git-svn-id: file:///svn/toku/tokudb@20347 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Bradley C. Kuszmaul 2013-04-16 23:59:13 -04:00 committed by Yoni Fogel
parent 0b177d642b
commit d6dc7aad45

View file

@ -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);
}