Make the gauntlet a bit clearer.

if(is a fixed-length TDS type)
	{
		XXX
	}
	else if(is a variable-length TDS type)
	{
		XXX
	}

Change-Id: Icaa8047ad76abe8b955fb5a025a057ddf8757b1f
Reviewed-on: https://code.wireshark.org/review/12415
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2015-12-03 13:20:58 -08:00
parent 74747489ac
commit f670b99aea
1 changed files with 2 additions and 3 deletions

View File

@ -2993,9 +2993,8 @@ dissect_tds7_colmetadata_token(tvbuff_t *tvb, struct _netlib_data *nl_data, guin
if(is_fixedlen_type_tds(type))
{
nl_data->columns[i]->csize = get_size_by_coltype(type);
} else
if(is_varlen_type_tds(type))
}
else if(is_varlen_type_tds(type))
{
switch(type)
{