From 86c1040ac133d94bcafac7e72b7a8353d2b5757d Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 3 Jan 2013 16:18:10 -0800 Subject: [PATCH] cyclegraph: fix insignificant memory leak --- cyclegraph.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/cyclegraph.cc b/cyclegraph.cc index edf582b..168ad90 100644 --- a/cyclegraph.cc +++ b/cyclegraph.cc @@ -17,6 +17,7 @@ CycleGraph::CycleGraph() : /** CycleGraph destructor */ CycleGraph::~CycleGraph() { + delete discovered; } /** -- 2.34.1