From b9c10cb46e71641063c082a4bff76fb8b5dd5f8e Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 25 Sep 2018 13:23:40 +0200 Subject: [PATCH] Linux: Add missing return statement (issue #2014) --- tests/cefclient/browser/dialog_handler_gtk.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cefclient/browser/dialog_handler_gtk.cc b/tests/cefclient/browser/dialog_handler_gtk.cc index 6ce0af937..81e7efecf 100644 --- a/tests/cefclient/browser/dialog_handler_gtk.cc +++ b/tests/cefclient/browser/dialog_handler_gtk.cc @@ -252,6 +252,7 @@ void ClientDialogHandlerGtk::OnFileDialogContinue(OnFileDialogParams params, } else { NOTREACHED(); params.callback->Cancel(); + return; } std::string title_str;