aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-multipart.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 21:59:35 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 21:59:35 +0000
commit484bf76753b5aa4b65c3c7556664c4f30cbea376 (patch)
treefe0a00bce76170c6899d2aaf82100137a051b730 /epan/dissectors/packet-multipart.c
parente0343b57c3b231690653f09d1a286bf695ea8284 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=50236
Diffstat (limited to 'epan/dissectors/packet-multipart.c')
-rw-r--r--epan/dissectors/packet-multipart.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-multipart.c b/epan/dissectors/packet-multipart.c
index aeb037034b..5642cc7341 100644
--- a/epan/dissectors/packet-multipart.c
+++ b/epan/dissectors/packet-multipart.c
@@ -269,11 +269,9 @@ unfold_and_compact_mime_header(const char *lines, gint *first_colon_offset)
} else { /* Regular character */
if (sep_seen) {
sep_seen = 0;
- lws = FALSE;
} else {
if (lws) {
*(q++) = ' ';
- lws = FALSE;
}
}
lws = FALSE;