summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Bugzilla.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Plugins/Bugzilla.cpp')
-rw-r--r--lib/Plugins/Bugzilla.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index 227f269..6bbb75c 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -8,11 +8,11 @@
#include <string.h>
CReporterBugzilla::CReporterBugzilla() :
- m_sBugzillaURL("https://bugzilla.redhat.com/xmlrpc.cgi"),
- m_bNoSSLVerify(false),
m_pXmlrpcTransport(NULL),
m_pXmlrpcClient(NULL),
- m_pCarriageParm(NULL)
+ m_pCarriageParm(NULL),
+ m_sBugzillaURL("https://bugzilla.redhat.com/xmlrpc.cgi"),
+ m_bNoSSLVerify(false)
{}
CReporterBugzilla::~CReporterBugzilla()
@@ -242,7 +242,6 @@ void CReporterBugzilla::AddAttachments(const std::string& pBugId, const map_cras
map_xmlrpc_params_t attachmentParams;
std::vector<xmlrpc_c::value> ret;
NSSBase64Encoder* base64;
- std::string::size_type pos;
map_crash_report_t::const_iterator it;
for (it = pCrashReport.begin(); it != pCrashReport.end(); it++)