Fix typo - we want to check if the pointer is NULL, not if the value

pointed to is NULL.

Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8599

svn path=/trunk/; revision=48943
This commit is contained in:
Evan Huus 2013-04-20 21:09:41 +00:00
parent cf0a2c952e
commit 513698ca76
1 changed files with 1 additions and 1 deletions

View File

@ -1823,7 +1823,7 @@ fragment_add_seq_common(reassembly_table *table, tvbuff_t *tvb,
* fragment_add_seq_check will then add it to the table
* of reassembled packets.
*/
if (*orig_keyp != NULL)
if (orig_keyp != NULL)
*orig_keyp = NULL;
fd_head->reassembled_in=pinfo->fd->num;
return fd_head;