(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/sigcomp-udvm.c) |
| |
| 3090 | | | decode_udvm_address_operand(guint8 *buff,guint operand_address, guint16 *value,guint current_address) |
| 3091 | | | { |
| 3092 | | | guint32 result; |
| 3093 | | | guint16 value1; |
| 3094 | | | guint next_opreand_address; |
| 3095 | | | |
| 3096 | [+] | | next_opreand_address = decode_udvm_multitype_operand(buff, operand_address, &value1); |
Event 1:
decode_udvm_multitype_operand() does not initialize value1. - This may be because of a failure case or other special case for decode_udvm_multitype_operand().
hide
|
|
 |
| 3097 | | | result = value1 & 0xffff; |
Uninitialized Variable
value1 was not initialized. The issue can occur if the highlighted code executes. See related event 1. Show: All events | Only primary events |
|
| |