Unused Value at packet-tango.c:1064 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
decode_Tango_Device_ping (/home/sate/Testcases/c/cve/wireshark-1.2.0/plugins/giop/packet-tango.c)![]() | ||||||
![]() | ||||||
1054 | static void decode_Tango_Device_ping(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_) { | |||||
1055 | ||||||
1056 | gboolean stream_is_big_endian; /* big endianess */ | |||||
1057 | ||||||
1058 | ||||||
1059 | /* Operation specific Variable declarations Begin */ | |||||
1060 | ||||||
1061 | ||||||
1062 | /* Operation specific Variable declarations End */ | |||||
1063 | ||||||
1064 | stream_is_big_endian = is_big_endian(header);
| |||||
1065 | ||||||
1066 | switch(header-> ) { | |||||
1067 | ||||||
1068 | case Request: | |||||
1069 | ||||||
1070 | break; | |||||
1071 | ||||||
1072 | case Reply: | |||||
1073 | ||||||
1074 | switch(header->rep_status) { | |||||
1075 | ||||||
1076 | case NO_EXCEPTION: | |||||
1077 | ||||||
1078 | /* Function returns void */ | |||||
1079 | ||||||
1080 | break; | |||||
1081 | ||||||
1082 | case USER_EXCEPTION: | |||||
1083 | ||||||
1084 | break; | |||||
1085 | ||||||
1086 | default: | |||||
1087 | ||||||
1088 | /* Unknown Exception */ | |||||
1089 | ||||||
1090 | g_warning("Unknown Exception "); | |||||
1091 | ||||||
1092 | break; | |||||
1093 | ||||||
1094 | ||||||
1095 | } /* switch(header-> ) */ | |||||
1096 | ||||||
1097 | break; | |||||
1098 | ||||||
1099 | default: | |||||
1100 | ||||||
1101 | /* Unknown GIOP Message */ | |||||
1102 | ||||||
1103 | g_warning("Unknown GIOP Message"); | |||||
1104 | ||||||
1105 | break; | |||||
1106 | ||||||
1107 | } /* switch(header-> ) */ | |||||
1108 | ||||||
1109 | } | |||||
![]() |