Fix Dead Store (Dead assignement/Dead increment) warning found by Clang

svn path=/trunk/; revision=54413
This commit is contained in:
Alexis La Goutte 2013-12-23 20:12:51 +00:00
parent b3a584d8dc
commit efa81cdac8
1 changed files with 4 additions and 1 deletions

View File

@ -871,7 +871,10 @@ static void dissect_fc_sbccs (tvbuff_t *tvb, packet_info *pinfo,
}
else if ((type == FC_SBCCS_IU_CMD_HDR) ||
(type != FC_SBCCS_IU_CMD_DATA)) {
conversation = conversation_new (pinfo->fd->num, &pinfo->src, &pinfo->dst,
#if 0
conversation =
#endif
conversation_new (pinfo->fd->num, &pinfo->src, &pinfo->dst,
PT_SBCCS, ch_cu_id, dev_addr, 0);
#if 0
task_key.conv_id = conversation->index;