Browse Source

clipper: Add assertion to silence a static analyzer warning

Turo Lamminen 7 years ago
parent
commit
76de3e0828
1 changed files with 1 additions and 0 deletions
  1. 1 0
      contrib/clipper/clipper.cpp

+ 1 - 0
contrib/clipper/clipper.cpp

@@ -2431,6 +2431,7 @@ void Clipper::ProcessHorizontal(TEdge *horzEdge)
     if ( horzEdge->outIdx >= 0 )
       IntersectEdges( horzEdge, eMaxPair,
       IntPoint(horzEdge->xtop, horzEdge->ycurr), ipBoth);
+    assert(eMaxPair);
     if (eMaxPair->outIdx >= 0) throw clipperException("ProcessHorizontal error");
     DeleteFromAEL(eMaxPair);
     DeleteFromAEL(horzEdge);