0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 04:38:52 +02:00

ircd::db: Condition to not assign cell with null column pointer.

This commit is contained in:
Jason Volk 2018-05-19 21:50:11 -07:00
parent 6150637537
commit df348bccaf

View file

@ -106,6 +106,9 @@ ircd::db::_assign_invalid(tuple &t,
const cell &cell)
{
const column &c{cell};
if(!c)
return;
const auto &descriptor
{
describe(c)