Fix (what appears to be) a minor "off by one" bug in 'for' loop.

svn path=/trunk/; revision=45500
This commit is contained in:
Bill Meier 2012-10-12 18:31:31 +00:00
parent cfa7c28fe7
commit 96f708abd5
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ dissect_handleList(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
offset = dissect_rpc_uint32(tvb, handleListTree,
hf_fmp_handleListLen, offset);
for (i = 0; i <= numHandles; i++) {
for (i = 0; i < numHandles; i++) {
offset = dissect_rpc_data(tvb, handleListTree,
hf_fmp_fmpFHandle, offset);/* changed */
}