Skip to content
Open
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
2 changes: 1 addition & 1 deletion MotionDetection/MotionDetection.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**

Check failure on line 1 in MotionDetection/MotionDetection.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 'MotionDetection/MotionDetection.cpp' (Match: rdkcentral/rdkservices/1, 455 lines, url: https://github.com/rdkcentral/rdkservices/archive/refs/tags/GRT_v1.tar.gz, file: MotionDetection/MotionDetection.cpp)
* If not stated otherwise in this file or this component's LICENSE
* file the following copyright and licenses apply:
*
Expand Down Expand Up @@ -373,7 +373,7 @@
JsonObject rangeObj = rangeList[range].Object();
if (rangeObj.HasLabel("startTime") && rangeObj.HasLabel("endTime"))
{
unsigned int startTime, endTime = 0;
unsigned int startTime = 0, endTime = 0;
getNumberParameterObject(rangeObj, "startTime", startTime);
getNumberParameterObject(rangeObj, "endTime", endTime);
timeSet.m_timeRangeArray[range].m_startTime = startTime;
Expand Down
Loading