summaryrefslogtreecommitdiff
path: root/lib/mime.c
diff options
context:
space:
mode:
authorxquery <jim@webcomposite.com>2020-06-08 08:42:25 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-06-08 11:04:44 +0200
commitb950120b2d7ab70cb4aa900ae1e5ddc415afdf45 (patch)
treef628c2e186e980ee9f9ce279d3ee5edc7a46d9a3 /lib/mime.c
parenta3e972313b92413cc4876bfc60c066d0916e74a9 (diff)
downloadcurl-b950120b2d7ab70cb4aa900ae1e5ddc415afdf45.tar.gz
socks: remove unreachable breaks in socks.c and mime.c
Closes #5537
Diffstat (limited to 'lib/mime.c')
-rw-r--r--lib/mime.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/mime.c b/lib/mime.c
index e85ef4206..4a87c4a3f 100644
--- a/lib/mime.c
+++ b/lib/mime.c
@@ -595,7 +595,6 @@ static size_t encoder_qp_read(char *buffer, size_t size, bool ateof,
switch(qp_lookahead_eol(st, ateof, consumed)) {
case -1: /* Need more data. */
return cursize;
- break;
case 0: /* Not followed by a CRLF. */
softlinebreak = 1;
break;