mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
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:
parent
6b45355e6b
commit
3ec8268b4a
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue