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

Change-Id: I05ca21d94bbaa8c92a33f02ceb100c206c198052
Reviewed-on: https://code.wireshark.org/review/298
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Alexis La Goutte 2014-02-21 20:08:30 +01:00
parent e009dc9843
commit 1b210e967c
1 changed files with 1 additions and 4 deletions

View File

@ -72,7 +72,6 @@ static int hf_result = -1;
static gint ett_adb_cs = -1;
static gint ett_length = -1;
static gint ett_status = -1;
static gint ett_version = -1;
static gint ett_pixel = -1;
static gint ett_data = -1;
@ -365,8 +364,7 @@ dissect_adb_cs(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _
}
if (response_frame == -1 || response_frame == (gint64) pinfo->fd->num) {
sub_item = proto_tree_add_item(main_tree, hf_status, tvb, offset, 4, ENC_NA | ENC_ASCII);
sub_tree = proto_item_add_subtree(sub_item, ett_status);
proto_tree_add_item(main_tree, hf_status, tvb, offset, 4, ENC_NA | ENC_ASCII);
col_append_fstr(pinfo->cinfo, COL_INFO, " Status=%c%c%c%c", tvb_get_guint8(tvb, offset),
tvb_get_guint8(tvb, offset + 1), tvb_get_guint8(tvb, offset + 2), tvb_get_guint8(tvb, offset + 3));
offset += 4;
@ -964,7 +962,6 @@ proto_register_adb_cs(void)
static gint *ett[] = {
&ett_adb_cs,
&ett_length,
&ett_status,
&ett_version,
&ett_pixel,
&ett_data