Commit bea99275 authored by Oleksandr Byelkin's avatar Oleksandr Byelkin

MDEV-13595: mariadb-10.2.8/storage/maria/ma_loghandler.c:2730]: (style) Array...

MDEV-13595: mariadb-10.2.8/storage/maria/ma_loghandler.c:2730]: (style) Array index 'chunk_offset' is used before limits check.

In fact just a cosmetic fix, code was safe because translog_get_first_chunk_offset return offsets inside the page.
parent 028d253d
......@@ -2741,7 +2741,7 @@ static my_bool translog_recover_page_up_to_sector(uchar *page, uint16 offset)
DBUG_PRINT("enter", ("offset: %u first chunk: %u",
(uint) offset, (uint) chunk_offset));
while (page[chunk_offset] != TRANSLOG_FILLER && chunk_offset < offset)
while (chunk_offset < offset && page[chunk_offset] != TRANSLOG_FILLER)
{
uint16 chunk_length;
if ((chunk_length=
......
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