couchbase: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: Ie1e3b071388b3527bba1088af69d76dcb8d6981a
Reviewed-on: https://code.wireshark.org/review/16333
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2016-07-08 08:06:30 +02:00 committed by Michael Mann
parent c3fc1e41c8
commit a7b7f94b4f
1 changed files with 0 additions and 1 deletions

View File

@ -1433,7 +1433,6 @@ dissect_value(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_tree_add_item(tree, hf_observe_old_vbucket_uuid, tvb, offset, 8, ENC_BIG_ENDIAN);
offset += 8;
proto_tree_add_item(tree, hf_observe_last_received_seqno, tvb, offset, 8, ENC_BIG_ENDIAN);
offset += 8;
}
}
} else if (!request && opcode == PROTOCOL_BINARY_DCP_STREAM_REQUEST) {