diff --git a/CHANGELOG.md b/CHANGELOG.md index d82107c..682a03f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.3.0](https://github.com/rdkcentral/start-parodus/compare/1.2.1...1.3.0) + +- RDKB-61958: Parodus-Start coverity issues fix [`#18`](https://github.com/rdkcentral/start-parodus/pull/18) +- Merge tag '1.2.1' into develop [`e3f03e0`](https://github.com/rdkcentral/start-parodus/commit/e3f03e09ed0c710fd15660aabd2c8f84f2522f9f) + #### [1.2.1](https://github.com/rdkcentral/start-parodus/compare/1.2.0...1.2.1) +> 23 October 2025 + - RDKCOM-5417: RDKBDEV-3270 ,RDKBACCL-1001 : Code Changes for the New W… [`#15`](https://github.com/rdkcentral/start-parodus/pull/15) - RDKCOM-5417: RDKBDEV-3270 ,RDKBACCL-1001 : Code Changes for the New Webpa Implementation [`30d5069`](https://github.com/rdkcentral/start-parodus/commit/30d50699849c78dc958642e10e86296cb2bcec3d) +- Updating CHANGELOG.md for new release tag 1.2.1 [`fa100ac`](https://github.com/rdkcentral/start-parodus/commit/fa100ac8998a5e2996a35ad008ae30d72ce3a394) - Merge tag '1.2.0' into develop [`00f1b0a`](https://github.com/rdkcentral/start-parodus/commit/00f1b0a76d1edfdd0aef6e4c575d080cd2724e15) #### [1.2.0](https://github.com/rdkcentral/start-parodus/compare/1.1.0...1.2.0) diff --git a/source/parodusStart/start_parodus.c b/source/parodusStart/start_parodus.c index da7c73c..c7b3221 100644 --- a/source/parodusStart/start_parodus.c +++ b/source/parodusStart/start_parodus.c @@ -923,7 +923,7 @@ STATIC void get_url(char *parodus_url, char *seshat_url, char *build_type) if (NULL != fp) { char str[255] = {'\0'}; - while(fscanf(fp,"%s", str) != EOF) + while(fscanf(fp,"%254s", str) != EOF) { char *value = NULL; @@ -1269,6 +1269,8 @@ STATIC void getWebpaValuesFromPsmDb(char *names[], char **values,int count) char tempBuf[MAX_BUF_SIZE] ={'\0'}; int offset = 0, i=0, index=0; char temp[MAX_VALUE_SIZE] = {'\0'}; + const size_t fmtBufSize = 32; + char fmt[fmtBufSize]; for(i=0; i