| 939 | } |
| 940 | |
| 941 | static int find_boundary(struct mailinfo *mi, struct strbuf *line) |
| 942 | { |
| 943 | while (!strbuf_getline_lf(line, mi->input)) { |
| 944 | if (*(mi->content_top) && is_multipart_boundary(mi, line)) |
| 945 | return 1; |
| 946 | } |
| 947 | return 0; |
| 948 | } |
| 949 | |
| 950 | static int handle_boundary(struct mailinfo *mi, struct strbuf *line) |
| 951 | { |
no test coverage detected