summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorNikola Pajkovsky <npajkovs@redhat.com>2010-06-21 16:30:49 +0200
committerNikola Pajkovsky <npajkovs@redhat.com>2010-06-21 16:30:49 +0200
commit553fe6a2b575ec5556c0c0c32410ac9a6562eb8a (patch)
tree9de3cea603623040af23ac68749893e67207139e /lib
parentc3660d4092f337a12cd32c95aae94f8b2db0200e (diff)
downloadabrt-553fe6a2b575ec5556c0c0c32410ac9a6562eb8a.tar.gz
abrt-553fe6a2b575ec5556c0c0c32410ac9a6562eb8a.tar.xz
abrt-553fe6a2b575ec5556c0c0c32410ac9a6562eb8a.zip
remove extra assignement
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/Bugzilla.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index 9e6dd607..8f0b672a 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -696,7 +696,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData,
if (!result)
throw_if_xml_fault_occurred(&bz_server.env);
- xmlrpc_value *all_bugs = all_bugs = bz_server.get_member("bugs", result);
+ xmlrpc_value *all_bugs = bz_server.get_member("bugs", result);
xmlrpc_DECREF(result);
if (!all_bugs)
@@ -705,7 +705,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData,
throw CABRTException(EXCEP_PLUGIN, _("Missing mandatory member 'bugs'"));
}
- int all_bugs_size = all_bugs_size = bz_server.get_array_size(all_bugs);
+ int all_bugs_size = bz_server.get_array_size(all_bugs);
bug_id = bz_server.get_bug_id(all_bugs);
xmlrpc_DECREF(all_bugs);
if (bug_id == -1)