From f2ee86e3b37b3d917cdf00fceffeffd65be1b3ce Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 7 Aug 2009 16:21:24 +0200 Subject: fix a bug where kerneloops scanner forgets to delete .lock files Signed-off-by: Denys Vlasenko --- lib/Plugins/Kerneloops.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/Plugins/Kerneloops.cpp') 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 -- cgit