Follow-up to MDEV-13103: Do not add __attribute__((nonnull))

In XtraDB, buf_block_get_frame() can return NULL, and this value
can be passed to buf_page_print(). Do not declare the parameter
as nonnull.
This commit is contained in:
Marko Mäkelä 2017-09-07 11:58:21 +03:00
parent 6b45355e6b
commit 3ec8268b4a

View file

@ -725,7 +725,7 @@ buf_print(void);
UNIV_INTERN
void
buf_page_print(const byte* read_buf, ulint zip_size)
UNIV_COLD MY_ATTRIBUTE((nonnull));
UNIV_COLD;
/********************************************************************//**
Decompress a block.