summaryrefslogtreecommitdiff
path: root/epan/dissectors/asn1/nbap
diff options
context:
space:
mode:
authorDarienSpencer65 <cusneud@mail.com>2017-05-24 15:12:05 +0300
committerPascal Quantin <pascal.quantin@gmail.com>2017-05-24 14:38:38 +0000
commit249ce2f18302f432a067fecc14913ed10d137fb1 (patch)
tree7b49cf175a10ed0ad704eb0717cc26be4013b16b /epan/dissectors/asn1/nbap
parent12d4ca9621ec60c99991cd4c031073182d31421c (diff)
downloadwireshark-249ce2f18302f432a067fecc14913ed10d137fb1.tar.gz
NBAP: Create E-DCH channel info
Adding missing creation and insertion of the E-DCH channel info the the FP conversation info struct Change-Id: Ic7dfb5b9579133ff84b2fc4fff73a3560055dcca Reviewed-on: https://code.wireshark.org/review/21742 Reviewed-by: S. Shapira <sswsdev@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/asn1/nbap')
-rw-r--r--epan/dissectors/asn1/nbap/nbap.cnf6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/asn1/nbap/nbap.cnf b/epan/dissectors/asn1/nbap/nbap.cnf
index a6092f5ee0..20399541e4 100644
--- a/epan/dissectors/asn1/nbap/nbap.cnf
+++ b/epan/dissectors/asn1/nbap/nbap.cnf
@@ -1282,6 +1282,7 @@ dch_id = 0xFFFFFFFF;
address dst_addr, null_addr;
conversation_t *conversation;
umts_fp_conversation_info_t *umts_fp_conversation_info = NULL;
+fp_edch_channel_info_t* fp_edch_channel_info;
nbap_edch_port_info_t *old_info = NULL;
transportLayerAddress_ipv4 = 0;
@@ -1333,6 +1334,8 @@ BindingID_port = 0;
umts_fp_conversation_info->rlc_mode = FP_RLC_MODE_UNKNOWN;
+ fp_edch_channel_info = wmem_new0(wmem_file_scope(), fp_edch_channel_info_t);
+ umts_fp_conversation_info->channel_specific_info = (void*)fp_edch_channel_info;
if(crcn_context_present){
umts_fp_conversation_info->com_context_id = com_context_id;
@@ -1454,6 +1457,7 @@ guint32 no_ddi_entries, i;
address dst_addr, null_addr;
conversation_t *conversation,*old_conversation = NULL;
umts_fp_conversation_info_t *umts_fp_conversation_info _U_;
+fp_edch_channel_info_t* fp_edch_channel_info;
void *conv_proto_data = NULL;
transportLayerAddress_ipv4 = 0;
@@ -1516,6 +1520,8 @@ BindingID_port = 0;
umts_fp_conversation_info->rlc_mode = FP_RLC_MODE_UNKNOWN;
+ fp_edch_channel_info = wmem_new0(wmem_file_scope(), fp_edch_channel_info_t);
+ umts_fp_conversation_info->channel_specific_info = (void*)fp_edch_channel_info;
if(crcn_context_present){
umts_fp_conversation_info->com_context_id = com_context_id;