From bdda5e82fbed9db806330d5f81b0c92d69e5ca96 Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 10 Jun 2024 16:37:27 -0400 Subject: [PATCH] cwFlowNet.h : Fixed memory leak. --- cwFlowNet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cwFlowNet.cpp b/cwFlowNet.cpp index bbf4387..8700fde 100644 --- a/cwFlowNet.cpp +++ b/cwFlowNet.cpp @@ -1726,6 +1726,8 @@ namespace cw goto errLabel; } } + + mem::release(r.label); }