Hi,
Can you double check packet-http.c around line 854.
if (isHttpRequestOrReply && req_dissector) {
if (!stat_info->request_method)
stat_info->request_method = g_malloc( index+1 );
strncpy( stat_info->request_method, data, index);
stat_info->request_method[index] = '\0';
}
it's
if (isHttpRequestOrReply && req_dissector) {
if (!stat_info->request_method) {
stat_info->request_method = g_malloc( index+1 );
strncpy( stat_info->request_method, data, index);
stat_info->request_method[index] = '\0';
}
}
or
if (isHttpRequestOrReply && req_dissector) {
if (!stat_info->request_method) {
stat_info->request_method = g_malloc( index+1 );
}
strncpy( stat_info->request_method, data, index);
stat_info->request_method[index] = '\0';
}


Didier

_______________________________________________
Ethereal-dev mailing list
[EMAIL PROTECTED]
http://www.ethereal.com/mailman/listinfo/ethereal-dev

Reply via email to