Commit d44c0f46 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-22924 fixup: Replace C++11 nullptr

Only starting with MariaDB Server 10.4 we may depend on C++11.
parent 64c8fa58
......@@ -3316,7 +3316,7 @@ class Row_sel_get_clust_rec_for_mysql
{
rec_offs vers_offs[REC_OFFS_HEADER_SIZE + MAX_REF_PARTS];
rec_offs_init(vers_offs);
mem_heap_t *heap= nullptr;
mem_heap_t *heap= NULL;
ut_ad(rec_offs_validate(cached_clust_rec, index, offsets));
ut_ad(index->first_user_field() <= rec_offs_n_fields(offsets));
......
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