Unreachable Conditional at ftype-integer.c:145 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
ipxnet_from_unparsed (/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/ftypes/ftype-integer.c)![]() | ||||||
![]() | ||||||
134 | ipxnet_from_unparsed(fvalue_t *fv, char *s, gboolean allow_partial_value _U_, LogFunc logfunc) | |||||
135 | { | |||||
136 | guint32 val; | |||||
137 | gboolean known; | |||||
138 | ||||||
139 | /* | |||||
140 | * Don't log a if this fails; we'll try looking it | |||||
141 | * up as an IPX network name if it does, and if that fails, | |||||
142 | * we'll log a . | |||||
143 | */ | |||||
144 | if (val_from_unparsed(fv, s, TRUE, NULL)) { | |||||
145 | return TRUE;
| |||||
146 | } | |||||
147 | ||||||
148 | val = get_ipxnet_addr(s, &known); | |||||
149 | if (known) { | |||||
150 | fv->value.uinteger = val; | |||||
151 | return TRUE; | |||||
152 | } | |||||
153 | ||||||
154 | logfunc("\"%s\" is not a valid IPX network name or address.", s); | |||||
155 | return FALSE; | |||||
156 | } | |||||
![]() |