You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
703 B
25 lines
703 B
From 0153352b99336335c5d6eb1635ea4b60574fa971 Mon Sep 17 00:00:00 2001
|
|
From: David Tardon <dtardon@redhat.com>
|
|
Date: Fri, 1 Nov 2013 12:35:12 +0100
|
|
Subject: [PATCH] coverity: fix memory leak
|
|
|
|
---
|
|
src/lib/FHStringVector.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/lib/FHStringVector.cpp b/src/lib/FHStringVector.cpp
|
|
index 2cab359..a6b5d7d 100644
|
|
--- a/src/lib/FHStringVector.cpp
|
|
+++ b/src/lib/FHStringVector.cpp
|
|
@@ -35,6 +35,7 @@ libfreehand::FHStringVector::FHStringVector(const FHStringVector &vec)
|
|
|
|
libfreehand::FHStringVector::~FHStringVector()
|
|
{
|
|
+ delete m_pImpl;
|
|
}
|
|
|
|
libfreehand::FHStringVector &libfreehand::FHStringVector::operator=(const FHStringVector &vec)
|
|
--
|
|
1.8.3.1
|
|
|