Empty if Statement at message-header-decode.c:47 |
No properties have been set. edit properties |
Jump to warning location ↓ | warning details... |
| |
message_header_decode_encoded (/home/sate/Testcases/c/cve/dovecot-1.2.0/src/lib-mail/message-header-decode.c)![]() | ||||||
![]() | ||||||
37 | case 'q': | |||||
38 | case 'Q': | |||||
39 | quoted_printable_decode(data + start_pos[1] + 1, | |||||
40 | start_pos[2] - start_pos[1] - 1, | |||||
41 | NULL, decodebuf); | |||||
42 | break; | |||||
43 | case 'b': | |||||
44 | case 'B': | |||||
45 | if (base64_decode(data + start_pos[1] + 1, | |||||
46 | start_pos[2] - start_pos[1] - 1, | |||||
47 | NULL, decodebuf) < 0) {
| |||||
48 | /* contains invalid data. show what we got so far. */ | |||||
49 | } | |||||
50 | break; | |||||
51 | default: | |||||
52 | /* unknown encoding */ | |||||
53 | return 0; | |||||
54 | } | |||||
55 | ||||||
56 | return start_pos[2] + 2; | |||||
57 | } | |||||
![]() |