summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Bugzilla.cpp
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-07-24 15:37:49 +0200
committerZdenek Prikryl <zprikryl@redhat.com>2009-07-24 15:37:49 +0200
commitcd561b99cd711d8be2b84280fa170943e5a4da60 (patch)
treee562dc87dab590863645ca3370c2ac8d51308427 /lib/Plugins/Bugzilla.cpp
parentf889932408f5912379f92e24c0e8f213a1f6c451 (diff)
downloadabrt-cd561b99cd711d8be2b84280fa170943e5a4da60.tar.gz
abrt-cd561b99cd711d8be2b84280fa170943e5a4da60.tar.xz
abrt-cd561b99cd711d8be2b84280fa170943e5a4da60.zip
fixed exception throwing
Diffstat (limited to 'lib/Plugins/Bugzilla.cpp')
-rw-r--r--lib/Plugins/Bugzilla.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index 4d834d7..be913d5 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -282,9 +282,8 @@ void CReporterBugzilla::Report(const map_crash_report_t& pCrashReport, const std
}
catch (CABRTException& e)
{
- throw CABRTException(EXCEP_PLUGIN, std::string("CReporterBugzilla::Report(): ") + e.what());
delete m_pCarriageParm;
- throw e;
+ throw CABRTException(EXCEP_PLUGIN, std::string("CReporterBugzilla::Report(): ") + e.what());
}
delete m_pCarriageParm;
}