Skip to content
Snippets Groups Projects
Commit 3f57564c authored by Georgy Kirichenko's avatar Georgy Kirichenko Committed by Vladimir Davydov
Browse files

Fix memory corruption while vinyl index rebuild

Reclaim memory used while previous page recovery not the last one.
There is no specific test case.

Fixes: 3920
parent 9dbcaa3a
No related branches found
No related tags found
No related merge requests found
......@@ -2382,6 +2382,7 @@ vy_run_rebuild_index(struct vy_run *run, const char *dir,
off_t page_offset, next_page_offset = xlog_cursor_pos(&cursor);
while ((rc = xlog_cursor_next_tx(&cursor)) == 0) {
region_truncate(region, mem_used);
page_offset = next_page_offset;
next_page_offset = xlog_cursor_pos(&cursor);
......@@ -2441,7 +2442,6 @@ vy_run_rebuild_index(struct vy_run *run, const char *dir,
info->row_index_offset = page_row_index_offset;
++run->info.page_count;
vy_run_acct_page(run, info);
region_truncate(region, mem_used);
}
if (prev_tuple != NULL) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment