Empty if Statement at packet-gdsdb.c:1144 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
gdsdb_sql_response (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-gdsdb.c)![]() | ||||||
![]() | ||||||
1134 | } | |||||
1135 | ||||||
1136 | static int | |||||
1137 | gdsdb_sql_response(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree) | |||||
1138 | { | |||||
1139 | /* int offset; */ | |||||
1140 | ||||||
1141 | if (tvb_length(tvb) < 8) { | |||||
1142 | return 0; | |||||
1143 | } | |||||
1144 | if (tree) {
| |||||
1145 | /* */ | |||||
1146 | } | |||||
1147 | ||||||
1148 | return tvb_length(tvb); | |||||
1149 | } | |||||
1150 | ||||||
1151 | static int (*gdsdb_handle_opcode[])(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) = { | |||||
1152 | gdsdb_dummy, /* op_void */ | |||||
1153 | gdsdb_connect, /* op_connect */ | |||||
1154 | gdsdb_dummy, /* op_exit */ | |||||
![]() |