aobatact / lattice-graph

Lattice graph for petgraph.
1 stars 2 forks source link

Fix Initialize and Drop #35

Closed aobatact closed 3 years ago

aobatact commented 3 years ago

Some Edges are not accessible so it won't be initialized for optimization. This is OK for !Drop type but it might be leak, or double free for Drop type. So fix it for uninitialized edges.

aobatact commented 3 years ago

36 should be fixed because we are not tracking None returned edge, causing freeing the uninit/dangling value.

aobatact commented 3 years ago

Partialy fixed in #39