From 3a8778e2f80cb10efdcfd07c28cef09d9c7ddae3 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 6 Nov 2019 14:00:38 -0500 Subject: [PATCH] Remove NOTREACHED in CefPostDataElementImpl::Set (fixes issue #2765) --- libcef/common/request_impl.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/libcef/common/request_impl.cc b/libcef/common/request_impl.cc index 2575f7ece..ab4aba494 100644 --- a/libcef/common/request_impl.cc +++ b/libcef/common/request_impl.cc @@ -1362,8 +1362,6 @@ void CefPostDataElementImpl::Set(const network::DataElement& element) { SetToBytes(element.length(), element.bytes()); } else if (element.type() == network::mojom::DataElementType::kFile) { SetToFile(element.path().value()); - } else { - NOTREACHED(); } }