diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-20 16:42:17 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-20 16:42:17 +0100 |
commit | 562cb414ee83452749058c2c976019c663111e55 (patch) | |
tree | 4dc3fb3bd887155494925f487a4737618c27c213 /lib/Plugins/Python.cpp | |
parent | f4beeadc35e646a9ad17e66c5afa2137fd4ff137 (diff) | |
download | abrt-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.cpp | 2 |
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; } |