aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-t38.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:24:44 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-13 16:24:44 +0000
commit2747e6bc45a629d0f5e0729e7215bef65a6bc2a1 (patch)
treef0a7b92686e4d8e165d4ecdbd0ece39de91a3c07 /epan/dissectors/packet-t38.c
parentfe3168dc2a0f7a823111eb83e9d93bf3f954b369 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40463
Diffstat (limited to 'epan/dissectors/packet-t38.c')
-rw-r--r--epan/dissectors/packet-t38.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-t38.c b/epan/dissectors/packet-t38.c
index 94082dcb63..627de93e2d 100644
--- a/epan/dissectors/packet-t38.c
+++ b/epan/dissectors/packet-t38.c
@@ -626,7 +626,7 @@ dissect_t38_T_field_type(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_
g_snprintf(t38_info->desc_comment, MAX_T38_DESC, "No packet lost");
}
- new_tvb = process_reassembled_data(tvb, offset, actx->pinfo,
+ process_reassembled_data(tvb, offset, actx->pinfo,
"Reassembled T38", frag_msg, &data_frag_items, NULL, tree);
/* Now reset fragmentation information in pinfo */