Return value tvb if pressent from all branches.

svn path=/trunk/; revision=24698
This commit is contained in:
Anders Broman 2008-03-19 19:10:31 +00:00
parent df1763c49b
commit 052b1a488f
1 changed files with 4 additions and 0 deletions

View File

@ -1907,6 +1907,8 @@ DEBUG_ENTRY("dissect_per_bit_string");
proto_item_append_text(actx->created_item, " [bit length %u]", max_len);
}
offset+=min_len;
if (value_tvb)
*value_tvb = out_tvb;
return offset;
}
@ -1926,6 +1928,8 @@ DEBUG_ENTRY("dissect_per_bit_string");
proto_item_append_text(actx->created_item, " [bit length %u]",max_len);
}
offset+=min_len;
if (value_tvb)
*value_tvb = out_tvb;
return offset;
}