mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-24 05:45:27 +00:00
Fix crash in GraphView
This commit is contained in:
parent
a476dda5d0
commit
7fd6867b12
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user