From df348bccaff3cffdfd5d1bf8dcef5b8bf7ce27c0 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 19 May 2018 21:50:11 -0700 Subject: [PATCH] ircd::db: Condition to not assign cell with null column pointer. --- include/ircd/db/json.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/ircd/db/json.h b/include/ircd/db/json.h index 82cf394d7..b1070a1a9 100644 --- a/include/ircd/db/json.h +++ b/include/ircd/db/json.h @@ -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)