Skip to content
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

RDKECMF-174 Fix compilation error and add native_full_build workflow #4

Closed
wants to merge 5 commits into from

Conversation

scthunderbolt
Copy link

@scthunderbolt scthunderbolt commented Jan 29, 2025

Error
datamodel.c:219:54: error: unused parameter 'SavedProfiles' [-Werror=unused-parameter]

@scthunderbolt scthunderbolt requested a review from a team as a code owner January 29, 2025 12:31
datamodel.c:219:54: error: unused parameter 'SavedProfiles' [-Werror=unused-parameter]
Use NULL macro
@@ -740,7 +740,7 @@ T2ERROR doHttpGet(char* httpsUrl, char **data) {
// Read the whole file content
if(len <= SIZE_MAX)
{
readBytes = fread(*data, len, 1, httpOutput);
fread(*data, len, 1, httpOutput);
Copy link

@rdkcmf-jenkins rdkcmf-jenkins Jan 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverity issue no longer present as of: undefined

Show issue

Coverity Issue - Ignoring number of bytes read

"fread(void * restrict, size_t, size_t, FILE * restrict)" returns the number of bytes read, but it is ignored.

Medium Impact, CWE-252
CHECKED_RETURN

@scthunderbolt scthunderbolt changed the title RDKECMF-174 TEST. DO NOT MERGE RDKECMF-174 Fix compilation error and add native_full_build workflow Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants