Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Miracast/MiracastService/MiracastController.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* If not stated otherwise in this file or this component's Licenses.txt file the

Check failure on line 2 in Miracast/MiracastService/MiracastController.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'Miracast/MiracastService/MiracastController.cpp' (Match: rdkcentral/rdkservices/6.1.7, 1611 lines, url: https://github.com/rdkcentral/rdkservices/archive/refs/tags/AML_BSP_REL_VERSION_RDK6.1.7.tar.gz, file: Miracast/MiracastService/MiracastController.cpp)
* following copyright and licenses apply:
*
* Copyright 2023 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Licensed under the Apache License, Version 2.0 the "License";
* you may not use this file ex cept in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
Expand Down Expand Up @@ -241,7 +241,7 @@
MIRACASTLOG_TRACE("Entering...");
char data[1024] = {0};
char command[128] = {0};
char sys_cls_file_ifidx[128] = {0};
char sys_cls_file_ifidx[12] = {0};
std::string local_addr = "",
gw_ip_addr = "",
popen_buffer = "",
Expand Down Expand Up @@ -1611,4 +1611,4 @@
miracast_ctrler_obj->Controller_Thread(nullptr);
}
MIRACASTLOG_TRACE("Exiting...");
}
}
2 changes: 1 addition & 1 deletion cov_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cmake -G Ninja -S "$GITHUB_WORKSPACE" -B build/entservices-casting \
-include ${GITHUB_WORKSPACE}/entservices-testframework/Tests/mocks/gdialservice.h \
-include ${GITHUB_WORKSPACE}/entservices-testframework/Tests/mocks/wpa_ctrl_mock.h \
-include ${GITHUB_WORKSPACE}/entservices-testframework/Tests/mocks/secure_wrappermock.h \
--coverage -Wall -Werror -Wno-error=format \
-Wall -Werror -Wno-format-overflow -Wno-error=format-overflow \
-Wl,-wrap,system -Wl,-wrap,popen -Wl,-wrap,syslog -Wl,-wrap,wpa_ctrl_open -Wl,-wrap,wpa_ctrl_request -Wl,-wrap,wpa_ctrl_close -Wl,-wrap,wpa_ctrl_pending -Wl,-wrap,wpa_ctrl_recv -Wl,-wrap,wpa_ctrl_attach \
-DENABLE_TELEMETRY_LOGGING -DUSE_IARMBUS \
-DENABLE_SYSTEM_GET_STORE_DEMO_LINK -DENABLE_DEEP_SLEEP \
Expand Down
Loading