aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/t38
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-09 16:33:47 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-01-09 16:33:47 +0000
commit8f34b6760b5579ed7dde127886a4576443ab4299 (patch)
tree3ea045557253146144d7f267f9f60473537bbc42 /asn1/t38
parent09e95bda3f916d36c5f9193791d79f46498af45a (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
Try to compile with cmake in Ubuntu 11.10 svn path=/trunk/; revision=40411
Diffstat (limited to 'asn1/t38')
-rw-r--r--asn1/t38/t38.cnf3
1 files changed, 1 insertions, 2 deletions
diff --git a/asn1/t38/t38.cnf b/asn1/t38/t38.cnf
index 6195f153b8..c7b5c64544 100644
--- a/asn1/t38/t38.cnf
+++ b/asn1/t38/t38.cnf
@@ -172,7 +172,6 @@ VAL_PTR=&Data_Field_field_type_value
/* using the current ressaemble functions. */
/* TODO: reassemble all the Items in one frame */
if (primary_part && (Data_Field_item_num<2)) {
- tvbuff_t* new_tvb = NULL;
fragment_data *frag_msg = NULL;
/* HDLC Data or t4-non-ecm-data */
@@ -199,7 +198,7 @@ VAL_PTR=&Data_Field_field_type_value
value_len, /* fragment length */
TRUE); /* More fragments */
- 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);
if (!frag_msg) { /* Not last packet of reassembled */