Skip to content

Commit f434eea

Browse files
committed
Merge branch 'release/1.4.12'
2 parents 7bed621 + a52faac commit f434eea

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.4.12](https://github.com/rdkcentral/entservices-inputoutput/compare/1.4.11...1.4.12)
8+
9+
- RDKECOREMW-893 : setVendorID API returns a success status of true when the parameter is not provided [`#271`](https://github.com/rdkcentral/entservices-inputoutput/pull/271)
10+
- Merge tag '1.4.11' into develop [`2c8ea51`](https://github.com/rdkcentral/entservices-inputoutput/commit/2c8ea51982ad74d617ad5018e151b399f5e0b8cc)
11+
712
#### [1.4.11](https://github.com/rdkcentral/entservices-inputoutput/compare/1.4.10...1.4.11)
813

14+
> 30 September 2025
15+
916
- RDKEMW-6120: Updating Hdcp, AvInput and HdmiCEC DS MGR client to use libds client library [`#262`](https://github.com/rdkcentral/entservices-inputoutput/pull/262)
17+
- 1.4.11 release changelog updates [`69044c1`](https://github.com/rdkcentral/entservices-inputoutput/commit/69044c13c4d78e2ac28abe7a7d82bdf7e619067f)
1018
- Merge tag '1.4.10' into develop [`48cf3e3`](https://github.com/rdkcentral/entservices-inputoutput/commit/48cf3e336018c36ad39adc6a25d943ba137a5538)
1119

1220
#### [1.4.10](https://github.com/rdkcentral/entservices-inputoutput/compare/1.4.9...1.4.10)

HdmiCecSource/HdmiCecSourceImplementation.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,6 +1224,11 @@ namespace WPEFramework
12241224
Core::hresult HdmiCecSourceImplementation::SetVendorId(const string &vendorid, HdmiCecSourceSuccess &success)
12251225
{
12261226
LOGINFO("SetVendorId :%s ",vendorid.c_str());
1227+
if (vendorid.empty()) {
1228+
LOGERR("SetVendorId failed: vendorid is not given");
1229+
success.success = false;
1230+
return Core::ERROR_GENERAL;
1231+
}
12271232
unsigned int vendorIdInt = 0;
12281233
try
12291234
{

0 commit comments

Comments
 (0)