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

svn path=/trunk/; revision=52287
This commit is contained in:
Alexis La Goutte 2013-09-30 09:03:06 +00:00
parent fe92d7a217
commit 8a95992860
1 changed files with 0 additions and 1 deletions

View File

@ -2794,7 +2794,6 @@ dissect_wccp2_alternate_assignment_info(tvbuff_t *tvb, int offset, gint length,
expert_add_info_format(pinfo, tf, &ei_wccp_assignment_length_bad,
"Assignment length is %d but %d remain in the packet. Assuming that the assignment length is wrong and setting it to %d.",
assignment_length, length, length);
assignment_length = length;
}
new_length=dissect_wccp2_assignment_key_element(tvb, offset, length, pinfo, info_tree);