Add a missing DISSECTOR_ASSERT in tvb_init()

svn path=/trunk/; revision=29433
This commit is contained in:
Kovarththanan Rajaratnam 2009-08-15 12:41:24 +00:00
parent ef68d63745
commit 623db2e71e
1 changed files with 4 additions and 0 deletions

View File

@ -112,6 +112,10 @@ tvb_init(tvbuff_t *tvb, tvbuff_type type)
composite->start_offsets = NULL;
composite->end_offsets = NULL;
break;
default:
DISSECTOR_ASSERT_NOT_REACHED();
break;
}
}