due to recent changes a lot of objects are now NULL (correctly) and eo
complains on access of them. it's simply too noisy adding too many
if's all through code, so let's just make eo be sensible here.
Generation_Counter generation;
Table_Index mid_table_id, table_id, entry_id;
+ // NULL objects will just be sensibly ignored. not worth complaining
+ // every single time.
+ if (!obj_id)
+ {
+ DBG("obj_id is NULL. Possibly unintended access?");
+ return NULL;
+ }
EO_DECOMPOSE_ID(obj_id, mid_table_id, table_id, entry_id, generation);
/* Check the validity of the entry */