Closed kostasrim closed 9 months ago
The problem is that in IoBuf::Reserve method we allocate with:
IoBuf::Reserve
uint8_t* nb = new (std::align_val_t{alignment_}) uint8_t[sz]; and later delete[] buf_;
which causes an alignment mismatch
The problem is that in
IoBuf::Reserve
method we allocate with:which causes an alignment mismatch