-
Notifications
You must be signed in to change notification settings - Fork 5
Feature/rdk 56050 #224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev_sprint_25_2
Are you sure you want to change the base?
Feature/rdk 56050 #224
Conversation
Reason for change: Migration to dev_sprint_25_2 from 117308 (patchset 12) Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: Migration to dev_sprint_25_2 from 117308 (patchset 12) Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
removed .rej
…into feature/RDK-56050
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Reason for change: for dev_Sprint_25_2 Test Procedure: Refer Ticket Risks: Low Priority: P1 Change-Id: If0a31d066478806bae29f09ab829b1108d7856ba Signed-off-by: Deepikasri N <[email protected]
Coverity Issue - Unchecked return valueCalling "wait_for" without checking return value (as is done elsewhere 13 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 - Variable copied when it could be moved"drmHelper" is copied in call to copy assignment for class "std::shared_ptr", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""drmHelper"")" instead of "drmHelper". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"inpData" is passed-by-value as parameter to "std::shared_ptr<_downloadConfig>::shared_ptr(std::shared_ptr<_downloadConfig> const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""inpData"")" instead of "inpData". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"drmHelper" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""drmHelper"")" instead of "drmHelper". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"drmHelper" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""drmHelper"")" instead of "drmHelper". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"licenseServerProxy" is passed-by-value as parameter to "std::__cxx11::basic_string<char, std::char_traits, std::allocator >::basic_string(std::__cxx11::basic_string<char, std::char_traits, std::allocator > const &)", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""licenseServerProxy"")" instead of "licenseServerProxy". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Double unlock"operator =" unlocks "slotSession.sessionIdMutex" while it is unlocked. Medium Impact, CWE-765 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Use of auto that causes a copyUsing the "auto" keyword without an "&" causes the copy of an object of type "PlayerSecManagerSession". Low Impact, CWE-none How to fixUse "const auto &" instead of "auto". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"drmHelper" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""drmHelper"")" instead of "drmHelper". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Double unlock"~lock_guard" unlocks "thisLock._M_device" while it is unlocked. Medium Impact, CWE-765 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"licenseResponse" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""licenseResponse"")" instead of "licenseResponse". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Dereference before null checkNull-checking "respData" suggests that it may be null, but it has already been dereferenced on all paths leading to the check. Medium Impact, CWE-476 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"drmHelper" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""drmHelper"")" instead of "drmHelper". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Use after freeCalling "g_object_get" dereferences freed pointer "this->m_gstElement". High Impact, CWE-416 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"data" is copied in call to copy assignment for class "std::vector<std::vector<unsigned char, std::allocator >, std::allocator<std::vector<unsigned char, std::allocator > > >", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""data"")" instead of "data". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Use after freePassing freed pointer "this->m_gstElement" as an argument to "logprintf". High Impact, CWE-416 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"licenseResponse" is passed-by-value as parameter to "std::shared_ptr::shared_ptr(std::shared_ptr const &) /explicit =default/", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""licenseResponse"")" instead of "licenseResponse". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"watermarkSessionUpdateCallback" is passed-by-value as parameter to "std::function<void (unsigned int, unsigned int, std::__cxx11::basic_string<char, std::char_traits, std::allocator > const &)>::function(std::function<void (unsigned int, unsigned int, std::__cxx11::basic_string<char, std::char_traits, std::allocator > const &)> const &)", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""watermarkSessionUpdateCallback"")" instead of "watermarkSessionUpdateCallback". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Double unlock"~PlayerScheduler" unlocks "this->mExLock" while it is unlocked. Medium Impact, CWE-765 Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Coverity Issue - Variable copied when it could be moved"waterMarkSessionUpdateCB" is passed-by-value as parameter to "std::function<void (unsigned int, unsigned int, std::__cxx11::basic_string<char, std::char_traits, std::allocator > const &)>::function(std::function<void (unsigned int, unsigned int, std::__cxx11::basic_string<char, std::char_traits, std::allocator > const &)> const &)", when it could be moved instead. Low Impact, CWE-none How to fixUse "std::move(""waterMarkSessionUpdateCB"")" instead of "waterMarkSessionUpdateCB". Issue locationThis issue was discovered outside the diff for this Pull Request. You can find it at: |
Change-Id: I77d0d29b44a01ae8d9fb3ddd455815700a3dbc76
Coverity Issue - Unchecked return valueCalling "wait_for" without checking return value (as is done elsewhere 13 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 "wait_for" without checking return value (as is done elsewhere 13 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 "wait_for" without checking return value (as is done elsewhere 13 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: |
1 similar comment
Coverity Issue - Unchecked return valueCalling "wait_for" without checking return value (as is done elsewhere 13 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 "wait_for" without checking return value (as is done elsewhere 13 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: |
pull request upon dev_sprint_25_2