1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-12 08:01:43 +03:00

branches/zip: buf_page_peek_block(): Do not invoke buf_block_get_state()

on a NULL pointer.  This error was introduced in r1082.
This commit is contained in:
marko
2006-11-30 12:40:33 +00:00
parent aedce8cde3
commit db71ab1cd6

View File

@@ -1208,7 +1208,9 @@ buf_page_peek_block(
mutex_exit(&(buf_pool->mutex));
if (UNIV_UNLIKELY(buf_block_get_state(block) != BUF_BLOCK_FILE_PAGE)) {
if (block
&& UNIV_UNLIKELY(buf_block_get_state(block)
!= BUF_BLOCK_FILE_PAGE)) {
block = NULL;
}