Skip to content

Commit 7d3e9f0

Browse files
emutavchiviveksinghnarwaria
authored andcommitted
Merge pull request rdkcentral#6180 from LibertyGlobal/hridhya-narayanan-infosys/SQ_issue_Virtual-function_override_sprint_25Q2
RDKCOM-5265: RDKDEV-1109: Potential bug CWE-670 - virtual function was overridden incorrectly E…
1 parent e88710c commit 7d3e9f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebKitBrowser/WebKitImplementation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2714,7 +2714,7 @@ static GSourceFuncs _handlerIntervention =
27142714
{
27152715
struct ExitJob : public Core::IDispatch
27162716
{
2717-
virtual void Dispatch() { exit(1); }
2717+
void Dispatch() override { exit(1); }
27182718
};
27192719

27202720
Core::IWorkerPool::Instance().Submit(Core::ProxyType<Core::IDispatch>(Core::ProxyType<ExitJob>::Create()));

0 commit comments

Comments
 (0)