aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-04-20 21:09:41 +0000
committerEvan Huus <eapache@gmail.com>2013-04-20 21:09:41 +0000
commit513698ca76ccd10869c80d0a34017e2c4d170030 (patch)
tree4cee6eef4500efa43b48e21f281e030e30bb7089
parentcf0a2c952e30fe6bf250fc04a76c423881e4b448 (diff)
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
-rw-r--r--epan/reassemble.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/reassemble.c b/epan/reassemble.c
index aa2a5a99bd..48fc22cf8e 100644
--- a/epan/reassemble.c
+++ b/epan/reassemble.c
@@ -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;