31 Jul
2009
31 Jul
'09
6:26 a.m.
On Fri, 31 Jul 2009, Niels Nes wrote: Here you still asign something that could be NULL.
dnode *n = selection->h;
- (void) where; + if (!selection) + return sql_error(sql, 02, "SELECT: the selection or from part is missing");
So the asignment should be after the check. Stefan