slightly improve dissection of complex_ping response

svn path=/trunk/; revision=13113
This commit is contained in:
Ulf Lamping 2005-01-18 20:44:11 +00:00
parent db59714331
commit b5ee55d468
1 changed files with 11 additions and 1 deletions

View File

@ -137,7 +137,17 @@ dissect_oxid_complex_ping_rqst(tvbuff_t *tvb, int offset,
}
}
offset = dissect_dcom_dcerpc_pointer(tvb, offset, pinfo, tree, drep, &u32Pointer);
offset = dissect_dcom_dcerpc_pointer(tvb, offset, pinfo, tree, drep,
&u32Pointer);
if (u32Pointer) {
offset = dissect_dcom_dcerpc_array_size(tvb, offset, pinfo, tree, drep,
&u32ArraySize);
while (u16DelFromSet--) {
offset = dissect_dcom_ID(tvb, offset, pinfo, tree, drep,
hf_oxid_oid, pu64OId);
}
}
return offset;
}