Fix crash in GraphView

This commit is contained in:
Florian Märkl 2017-12-24 13:11:29 +01:00
parent a476dda5d0
commit 7fd6867b12

View File

@ -71,13 +71,13 @@ public:
std::vector<ut64> new_exits; std::vector<ut64> new_exits;
// Number of rows in block // Number of rows in block
int row_count; int row_count = 0;
// Number of columns in block // Number of columns in block
int col_count; int col_count = 0;
// Column in which the block is // Column in which the block is
int col; int col = 0;
// Row in which the block is // Row in which the block is
int row; int row = 0;
// Edges // Edges
std::vector<GraphEdge> edges; std::vector<GraphEdge> edges;