(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-dcom.c) |
| |
| 1457 | | | dissect_dcom_UUID(tvbuff_t *tvb, int offset, |
| 1458 | | | packet_info *pinfo, proto_tree *tree, guint8 *drep, |
| 1459 | | | int hfindex, e_uuid_t *pdata) |
| 1460 | | | { |
| 1461 | | | const gchar *uuid_name; |
| 1462 | | | *hfi; |
| 1463 | | | e_uuid_t uuid; |
| 1464 | | | |
| 1465 | | | |
| 1466 | | | |
| 1467 | | | offset = dissect_ndr_uuid_t(tvb, offset, pinfo, NULL, drep, |
| 1468 | [+] | | hfindex, &uuid); |
Event 1:
dissect_ndr_uuid_t() does not initialize uuid. - This may be because of a failure case or other special case for dissect_ndr_uuid_t().
hide
|
|
 |
| 1469 | | | |
| 1470 | | | |
| 1471 | | | hfi = proto_registrar_get_nth(hfindex); |
| 1472 | [+] | | uuid_name = guids_get_uuid_name(&uuid);
x /home/sate/Testcases/c/cve/wireshark-1.2.0/epan/guid-utils.h |
| |
57 | #define guids_get_uuid_name(uuid) guids_get_guid_name((e_guid_t *) (uuid)) |
| |
|
Event 3:
&uuid.Data1 is passed to guids_get_guid_name().
hide
Event 4:
guids_get_guid_name() does not initialize uuid. - This may be because of a failure case or other special case for guids_get_guid_name().
hide
|
|
 |
| |