From 62a7948af0ca9eb3b190a54918201e1075edcbbc Mon Sep 17 00:00:00 2001 From: smatz Date: Fri, 22 May 2009 15:13:50 +0000 Subject: (svn r16378) -Codechange: replace OldPool with simpler Pool. Compilation time, binary size and run time (with asserts disabled) should be improved --- src/waypoint_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/waypoint_cmd.cpp') diff --git a/src/waypoint_cmd.cpp b/src/waypoint_cmd.cpp index 468d216cb..ae3980edf 100644 --- a/src/waypoint_cmd.cpp +++ b/src/waypoint_cmd.cpp @@ -74,7 +74,7 @@ static void MakeDefaultWaypointName(Waypoint *wp) Waypoint *lwp = Waypoint::Get(cid); /* check only valid waypoints... */ - if (lwp->IsValid() && wp != lwp) { + if (lwp != NULL && wp != lwp) { /* only waypoints with 'generic' name within the same city */ if (lwp->name == NULL && lwp->town_index == wp->town_index) { /* if lwp->town_cn < next, uint will overflow to '+inf' */ -- cgit v1.2.3-54-g00ecf