TEST#117
Conversation
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
Coverity Issue - Unchecked return valueCalling "IARM_Bus_RegisterCall" without checking return value (as is done elsewhere 14 out of 14 times). Medium Impact, CWE-252 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Unchecked return valueCalling "IARM_Bus_RegisterCall" without checking return value (as is done elsewhere 14 out of 14 times). Medium Impact, CWE-252 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Unchecked return valueCalling "IARM_Bus_RegisterCall" without checking return value (as is done elsewhere 14 out of 14 times). Medium Impact, CWE-252 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Unchecked return valueCalling "IARM_Bus_RegisterCall" without checking return value (as is done elsewhere 14 out of 14 times). Medium Impact, CWE-252 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Unchecked return valueCalling "IARM_Bus_RegisterCall" without checking return value (as is done elsewhere 14 out of 14 times). Medium Impact, CWE-252 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
| for (size_t i = 0; i < videoPorts.size(); i++) | ||
| try | ||
| { | ||
| bool doEnable = get_video_port_standby_setting(videoPorts.at(i).getName().c_str()); |
There was a problem hiding this comment.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Invalid type in argument to printf format specifier
Argument "videoPorts.size()" to format specifier "%d" was expected to have type "int" but has type "unsigned long".
Medium Impact, CWE-686
PRINTF_ARGS
| { | ||
| // Disable the Audio Port | ||
| device::AudioOutputPort aPort = aPorts.at(i); | ||
| INT_INFO("[%s] Disabling Audio PortName [%s] at [%d] for powerState [%d] \r\n",__FUNCTION__, aPort.getName().c_str(), i, powerState); |
There was a problem hiding this comment.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Invalid type in argument to printf format specifier
Argument "aPorts.size()" to format specifier "%d" was expected to have type "int" but has type "unsigned long".
Medium Impact, CWE-686
PRINTF_ARGS
| try | ||
| { | ||
| device::VideoOutputPort vPort = videoPorts.at(i); | ||
| // Enable the Video Port |
There was a problem hiding this comment.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Invalid type in argument to printf format specifier
Argument "videoPorts.size()" to format specifier "%d" was expected to have type "int" but has type "unsigned long".
Medium Impact, CWE-686
PRINTF_ARGS
| { | ||
| device::AudioOutputPort aPort = aPorts.at(i); | ||
| bool isEnablePersist = aPort.getEnablePersist(); | ||
| INT_INFO("[%s] Audio PortName[%s] isEnablePersist[%d] at [%d] \r\n", __FUNCTION__, aPort.getName().c_str(), isEnablePersist, i); |
There was a problem hiding this comment.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Invalid type in argument to printf format specifier
Argument "aPorts.size()" to format specifier "%d" was expected to have type "int" but has type "unsigned long".
Medium Impact, CWE-686
PRINTF_ARGS
|
|
||
| VideoOutputPortType::VideoOutputPortType(const int id) { | ||
| (void)id; | ||
| } |
There was a problem hiding this comment.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Uninitialized scalar field
Non-static class member "_restrictedResolution" is not initialized in this constructor nor in any functions that it calls.
Medium Impact, CWE-457
UNINIT_CTOR
Signed-off-by: yuvaramachandran_gurusamy <yuvaramachandran_gurusamy@comcast.com>
No description provided.