Skip to content

Commit

Permalink
Error on test with geos intersects function (MapServer#2105)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/mapserver/trunk@6181 7532c77e-422f-0410-93f4-f0b67bdd69e2
  • Loading branch information
Assefa Yewondwossen committed Jun 7, 2007
1 parent 8264c6b commit 2e8577f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapquery.c
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ int msQueryByOperator(mapObj *map, int qlayer, shapeObj *selectshape,

case MS_GEOS_INTERSECTS:
status = msGEOSIntersects(&shape, selectshape);
if (status != MS_TRUE || status != MS_FALSE)
if (status != MS_TRUE && status != MS_FALSE)
status = MS_FALSE;
break;

Expand Down

0 comments on commit 2e8577f

Please sign in to comment.