mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
ircd::db: Condition to not assign cell with null column pointer.
This commit is contained in:
parent
6150637537
commit
df348bccaf
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue