aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-01-25 11:47:39 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-01-25 11:47:39 +0000
commitc198fc65462567cf87c914dc7eff758f18680297 (patch)
tree03dd1faf270372972f7c1da1e0b81875d16eae54 /epan/dissectors/packet-http.c
parent17a01968d9904dcf2d4a35568755866cec7224ca (diff)
From Didier Gautheron via bug 4419:
se_alloc and ep_alloc never return NULL and se_alloc0 already initialized data with 0. svn path=/trunk/; revision=31654
Diffstat (limited to 'epan/dissectors/packet-http.c')
-rw-r--r--epan/dissectors/packet-http.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/epan/dissectors/packet-http.c b/epan/dissectors/packet-http.c
index e5401600eb..4e0560a127 100644
--- a/epan/dissectors/packet-http.c
+++ b/epan/dissectors/packet-http.c
@@ -549,9 +549,6 @@ get_http_conversation_data(packet_info *pinfo)
/* Setup the conversation structure itself */
conv_data = se_alloc0(sizeof(http_conv_t));
- conv_data->request_method = NULL;
- conv_data->request_uri = NULL;
-
conversation_add_proto_data(conversation, proto_http,
conv_data);
}