Fix a call to dereference a pointer (found by a compiler warning).

svn path=/trunk/; revision=14318
This commit is contained in:
Guy Harris 2005-05-05 11:08:20 +00:00
parent aa36cca7d8
commit 0c8fb767d1
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ dissect_ReadWrite_rqst_block(tvbuff_t *tvb, int offset,
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, ", %u bytes",
u32RecDataLen);
*u32RecDataLen);
return offset;
}