Skip to content

Commit 90c9c70

Browse files
authored
Merge pull request rdkcentral#6262 from viveksinghnarwaria/RDKCOM-5265
RDKCOM-5265: RDKDEV-1109: Potential bug CWE-670 - virtual function was overridden incorrectly E…
2 parents e88710c + c19769b commit 90c9c70

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

WebKitBrowser/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
20+
## [1.1.28] - 2025-04-06
21+
### Fixed
22+
- virtual function was overridden incorrectly
23+
1924
## [1.1.27] - 2024-12-18
2025
### Fixed
2126
- Testing: Fix encrypted playback in TC subview and improve visibility handling

WebKitBrowser/WebKitBrowser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#define API_VERSION_NUMBER_MAJOR 1
2323
#define API_VERSION_NUMBER_MINOR 1
24-
#define API_VERSION_NUMBER_PATCH 26
24+
#define API_VERSION_NUMBER_PATCH 28
2525

2626
namespace WPEFramework {
2727

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)