From 93347b54526d4ac97b29b7f77f9bd15deb858c08 Mon Sep 17 00:00:00 2001 From: Chris Peterson Date: Sun, 22 Nov 2015 22:17:50 -0800 Subject: [PATCH] Bug 1235238 - Remove unnecessary switch fallthrough to fix -Wimplicit-fallthrough warning in ssltunnel. r=mayhemer testing/mochitest/ssltunnel/ssltunnel.cpp:1387:5 [-Wimplicit-fallthrough] unannotated fall-through between switch labels --- testing/mochitest/ssltunnel/ssltunnel.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/mochitest/ssltunnel/ssltunnel.cpp b/testing/mochitest/ssltunnel/ssltunnel.cpp index 3abbf000cb0..b4aec5641e0 100644 --- a/testing/mochitest/ssltunnel/ssltunnel.cpp +++ b/testing/mochitest/ssltunnel/ssltunnel.cpp @@ -1384,8 +1384,11 @@ int parseConfigFile(const char* filePath) return 1; } b = buffer; + continue; + case '\r': continue; + default: *b++ = c; }