aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-19 14:11:01 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-19 14:11:01 +0000
commit86d3738d6a0a4a91cf77053737f9bab5cfbe74e8 (patch)
tree18e64c6ceedbbbf9c4a362e0ec691eede4b42eff /plugins
parent75ddda9518a46829e121cc2f6ed4b860e4fa2e0e (diff)
Don't assign a value to a variable which is then never used: Coverity 1160 [UNUSED]
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37290 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mate/mate_runtime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/mate/mate_runtime.c b/plugins/mate/mate_runtime.c
index ca6c3d811c..62024e3328 100644
--- a/plugins/mate/mate_runtime.c
+++ b/plugins/mate/mate_runtime.c
@@ -162,9 +162,9 @@ extern void initialize_mate_runtime(void) {
dbg_gop = &(mc->dbg_gop_lvl);
dbg_gog = &(mc->dbg_gog_lvl);
dbg = &(mc->dbg_lvl);
- dbg_facility = mc->dbg_facility;
+ dbg_facility = mc->dbg_facility;
- dbg_print(dbg, 1, dbg_facility, "starting mate");
+ dbg_print(dbg, 1, dbg_facility, "starting mate");
} else {
rd = NULL;
@@ -415,7 +415,7 @@ static void analyze_gop(mate_gop* gop) {
gog_remove_keys(gog);
- gog = new_gog(gog->cfg,gop);
+ new_gog(gog->cfg,gop);
break;
} else {
@@ -465,7 +465,7 @@ static void analyze_gop(mate_gop* gop) {
static void analyze_pdu(mate_pdu* pdu) {
/* TODO:
- return a g_boolean to tell we've destroyed the pdu when the pdu is unnassigned
+ return a g_boolean to tell we've destroyed the pdu when the pdu is unnassigned
destroy the unassigned pdu
*/
mate_cfg_gop* cfg = NULL;