Don't assign a value to a variable which is then never used: Coverity 1160 [UNUSED]

svn path=/trunk/; revision=37290
This commit is contained in:
Bill Meier 2011-05-19 14:11:01 +00:00
parent 307d7e8c3c
commit 7062abeb00
1 changed files with 4 additions and 4 deletions

View File

@ -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;