Squelch a compiler warning.

svn path=/trunk/; revision=16839
This commit is contained in:
Guy Harris 2005-12-18 10:58:47 +00:00
parent df02403f08
commit e09d859591
1 changed files with 1 additions and 1 deletions

View File

@ -1679,7 +1679,7 @@ dissect_smb2_session_setup_request(tvbuff_t *tvb, packet_info *pinfo, proto_tree
/* If we have found a uid->acct_name mapping, store it */
if(!pinfo->fd->flags.visited){
idx=0;
while(ntlmssph=fetch_tapped_data(ntlmssp_tap_id, idx++)){
while((ntlmssph=fetch_tapped_data(ntlmssp_tap_id, idx++)) != NULL){
if(ntlmssph && ntlmssph->type==3){
smb2_uid_info_t *uid;
uid=se_alloc(sizeof(smb2_uid_info_t));