summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-20 16:42:17 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-20 16:42:17 +0100
commit562cb414ee83452749058c2c976019c663111e55 (patch)
tree4dc3fb3bd887155494925f487a4737618c27c213 /lib/Plugins/Python.cpp
parentf4beeadc35e646a9ad17e66c5afa2137fd4ff137 (diff)
downloadabrt-562cb414ee83452749058c2c976019c663111e55.tar.gz
abrt-562cb414ee83452749058c2c976019c663111e55.tar.xz
abrt-562cb414ee83452749058c2c976019c663111e55.zip
split load_crash_data_from_debug_dump from DebugDumpToCrashReport
We will need it elsewhere later Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Plugins/Python.cpp')
-rw-r--r--lib/Plugins/Python.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Plugins/Python.cpp b/lib/Plugins/Python.cpp
index 79247d6..ad95468 100644
--- a/lib/Plugins/Python.cpp
+++ b/lib/Plugins/Python.cpp
@@ -5,9 +5,9 @@
static std::string CreateHash(const char *pDebugDumpDir)
{
- std::string uuid;
CDebugDump dd;
dd.Open(pDebugDumpDir);
+ std::string uuid;
dd.LoadText(FILENAME_UUID, uuid);
return uuid;
}