Remove incorrect nullness check
This commit is contained in:
@@ -192,7 +192,7 @@ struct Plan : PlanPool::PoolItem<&_plan_pool> {
|
|||||||
PlanLine *NewLine()
|
PlanLine *NewLine()
|
||||||
{
|
{
|
||||||
PlanLine *pl = new PlanLine();
|
PlanLine *pl = new PlanLine();
|
||||||
if (pl) this->lines.push_back(pl);
|
this->lines.push_back(pl);
|
||||||
return pl;
|
return pl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user