summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-08-07 16:21:24 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-07 16:21:24 +0200
commitf2ee86e3b37b3d917cdf00fceffeffd65be1b3ce (patch)
tree0929f6f174ce949fb6a09d1b888e4fabd64877d7
parent911669ee149c3352dfed14bd0d0a53c2485951c7 (diff)
downloadabrt-f2ee86e3b37b3d917cdf00fceffeffd65be1b3ce.tar.gz
abrt-f2ee86e3b37b3d917cdf00fceffeffd65be1b3ce.tar.xz
abrt-f2ee86e3b37b3d917cdf00fceffeffd65be1b3ce.zip
fix a bug where kerneloops scanner forgets to delete .lock files
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--lib/Plugins/Kerneloops.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Plugins/Kerneloops.cpp b/lib/Plugins/Kerneloops.cpp
index 1eabd215..2dcd0c34 100644
--- a/lib/Plugins/Kerneloops.cpp
+++ b/lib/Plugins/Kerneloops.cpp
@@ -42,6 +42,7 @@ std::string CAnalyzerKerneloops::GetLocalUUID(const std::string& pDebugDumpDir)
CDebugDump m_pDebugDump;
m_pDebugDump.Open(pDebugDumpDir);
m_pDebugDump.LoadText(FILENAME_KERNELOOPS, m_sOops);
+ m_pDebugDump.Close();
/* An algorithm proposed by Donald E. Knuth in The Art Of Computer
* Programming Volume 3, under the topic of sorting and search