frontw / voronoi_planner

ROS navigation stack base global planner plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Memory Leak

HansRobo opened this issue · comments

In planner_core.cpp, there are some memory leak.
For example, map is declared and allocated memory, but the memory is never released.

bool **map=NULL;

And closed and action have same issue.

bool **closed=NULL;

int **action=NULL;