Skip to content

Commit

Permalink
clipper.cpp: fix uninitialized member variable (CID 1175300)
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 23, 2021
1 parent 00114ba commit 47807cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions renderers/agg/src/clipper.cpp
Expand Up @@ -3072,10 +3072,10 @@ class PolyOffsetBuilder
Polygons m_p;
Polygon* m_curr_poly = nullptr;
std::vector<DoublePoint> normals;
double m_delta, m_RMin, m_R = 0;
size_t m_i, m_j = 0, m_k = 0;
double m_delta = 0, m_RMin = 0, m_R = 0;
size_t m_i = 0, m_j = 0, m_k = 0;
static const int buffLength = 128;
JoinType m_jointype;
JoinType m_jointype = jtSquare;

public:

Expand Down

0 comments on commit 47807cb

Please sign in to comment.