fix packet-per.c:155: warning: 'val_tvb' may be used uninitialized in this function

svn path=/trunk/; revision=21763
This commit is contained in:
Tomas Kukosa 2007-05-14 14:17:42 +00:00
parent 892313093f
commit 52b3c8baf4
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ static guint32
dissect_per_open_type_internal(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx, proto_tree *tree, int hf_index, void* type_cb, type_cb_variant variant)
{
guint32 type_length, end_offset;
tvbuff_t *val_tvb;
tvbuff_t *val_tvb = NULL;
header_field_info *hfi;
proto_tree *subtree = tree;