Conversation
Signed-off-by: apatel859 <Amit_Patel5@comcast.com>
Signed-off-by: apatel859 [Amit_Patel5@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: |
| } | ||
|
|
||
| AudioOutputPort::AudioOutputPort(const int type, const int index, const int id) { | ||
| } |
There was a problem hiding this comment.
Coverity Issue - Uninitialized scalar field
Non-static class member "_muted" is not initialized in this constructor nor in any functions that it calls.
Medium Impact, CWE-457
UNINIT_CTOR
|
|
||
| memset(&setMode, 0, sizeof(setMode)); | ||
| setMode.handle = getHandle.handle; | ||
| strncpy(setMode.portName, aPort.getName().c_str(), 32); |
There was a problem hiding this comment.
Coverity Issue - Buffer not null terminated
Calling "strncpy" with a maximum size argument of 32 bytes on destination array "setMode.portName" of size 32 bytes might leave the destination string unterminated.
High Impact, CWE-170
BUFFER_SIZE
|
|
||
| memset(&setMode, 0, sizeof(setMode)); | ||
| setMode.handle = getHandle.handle; | ||
| strncpy(setMode.portName, aPort.getName().c_str(), 32); |
There was a problem hiding this comment.
Coverity Issue - Buffer not null terminated
Calling "strncpy" with a maximum size argument of 32 bytes on destination array "setMode.portName" of size 32 bytes might leave the destination string unterminated.
High Impact, CWE-170
BUFFER_SIZE
No description provided.