(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/dissectors/packet-ldap.c) |
| |
| 1359 | | | dissect_ldap_T_bindResponse_matchedDN(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) { |
| 1360 | | | #line 703 "ldap.cnf" |
| 1361 | | | tvbuff_t *new_tvb=NULL; |
| 1362 | | | |
| 1363 | | | offset = dissect_ber_octet_string(FALSE, actx, tree, tvb, offset, hf_ldap_matchedDN, &new_tvb); |
| 1364 | | | |
| 1365 | | | if( new_tvb |
| 1366 | | | && (tvb_length(new_tvb)>=7) |
| 1367 | | | && (!tvb_memeql(new_tvb, 0, "NTLMSSP", 7))){ |
| 1368 | | | |
| 1369 | | | |
| 1370 | | | ldap_do_protocolop(actx->pinfo); |
| 1371 | | | |
| 1372 | | | call_dissector(ntlmssp_handle, new_tvb, actx->pinfo, tree); |
| 1373 | | | } |
| 1374 | | | return offset; |
| 1375 | | | |
| 1376 | | | |
| 1377 | | | |
| 1378 | | | return offset; |
Unreachable Data Flow
The highlighted code will not execute under any circumstances. This may be because of: |
|
| 1379 | | | } |
| |