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

Change-Id: Iddbc5257108c7e77eff5e43f0421a688709680f3
Reviewed-on: https://code.wireshark.org/review/31413
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
This commit is contained in:
Alexis La Goutte 2019-01-06 14:47:56 +00:00 committed by Martin Kaiser
parent 90a21c29f9
commit 6f67da949c
1 changed files with 0 additions and 1 deletions

View File

@ -213,7 +213,6 @@ static void dissect_pgsql_fe_msg(guchar type, guint length, tvbuff_t *tvb,
n += 4;
if (data_length) {
proto_tree_add_item(tree, hf_sasl_auth_data, tvb, n, data_length, ENC_NA);
n += data_length;
}
break;