summaryrefslogtreecommitdiffstats
path: root/planner.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-19 11:41:09 -0500
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-08-19 15:06:39 -0500
commit77f9bf06fded941aeff049cf5d3c0c3f2785d011 (patch)
tree2aba8de2c7e0af36a37bd3f0938da19e4e5ff733 /planner.h
parent6ed189f32c466f99167ab6657264a45da4b56e8e (diff)
downloadsubsurface-77f9bf06fded941aeff049cf5d3c0c3f2785d011.tar.gz
Planner: correctly free divedatapoints
Simply setting the pointer to NULL leaks memory. And that C++ recursive two function implementation... oh boy. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'planner.h')
-rw-r--r--planner.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/planner.h b/planner.h
index a737f26c6..b1e37d5cb 100644
--- a/planner.h
+++ b/planner.h
@@ -20,6 +20,7 @@ extern void get_gas_at_time(struct dive *dive, struct divecomputer *dc, duration
extern int get_gasidx(struct dive *dive, struct gasmix *mix);
extern bool diveplan_empty(struct diveplan *diveplan);
+extern void free_dps(struct diveplan *diveplan);
extern struct dive *planned_dive;
extern char *cache_data;
extern const char *disclaimer;