Commit 244c9715 authored by marko's avatar marko

branches/zip: Bug fixes.

data0data.c: Add #include "page0zip.h" that was forgotten from r739.

page_cur_insert_rec_low(): Remove a memory leak when preventing
extra_size to grow.
parent 7b36a0aa
......@@ -15,6 +15,7 @@ Created 5/30/1994 Heikki Tuuri
#include "rem0rec.h"
#include "rem0cmp.h"
#include "page0page.h"
#include "page0zip.h"
#include "dict0dict.h"
#include "btr0cur.h"
......
......@@ -976,7 +976,7 @@ page_cur_insert_rec_low(
} else if (UNIV_UNLIKELY(extra_size_diff)) {
/* Do not allow extra_size to grow */
goto use_heap;
goto too_small;
}
}
......
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