diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-07 16:21:24 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-07 16:21:24 +0200 |
commit | f2ee86e3b37b3d917cdf00fceffeffd65be1b3ce (patch) | |
tree | 0929f6f174ce949fb6a09d1b888e4fabd64877d7 /lib/Plugins/Kerneloops.cpp | |
parent | 911669ee149c3352dfed14bd0d0a53c2485951c7 (diff) | |
download | abrt-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>
Diffstat (limited to 'lib/Plugins/Kerneloops.cpp')
-rw-r--r-- | lib/Plugins/Kerneloops.cpp | 1 |
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 |