Skip to content
Closed
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: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@ 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.6](https://github.com/rdkcentral/remote_debugger/compare/1.3.5...1.3.6)

Comment on lines +7 to +8
- RDKEMW-17573: Triggering a issue type with more than 35 chars in RRD is leading RDM crash [`#211`](https://github.com/rdkcentral/remote_debugger/pull/211)
- Merge tag '1.3.5' into develop [`e375436`](https://github.com/rdkcentral/remote_debugger/commit/e3754369df94db0bc5d4563fa031d17d5aabef84)

#### [1.3.5](https://github.com/rdkcentral/remote_debugger/compare/1.3.4...1.3.5)

> 9 June 2026

- Update L2_Test_Coverage.md [`#213`](https://github.com/rdkcentral/remote_debugger/pull/213)
- L2/L1 Coverage Report [`#210`](https://github.com/rdkcentral/remote_debugger/pull/210)
- Update rrdEventProcess.c [`#197`](https://github.com/rdkcentral/remote_debugger/pull/197)
- L2 Document update [`#207`](https://github.com/rdkcentral/remote_debugger/pull/207)
- RDK-60236 : Remote Debugger Supports UUID Information in Debug Report File [`#199`](https://github.com/rdkcentral/remote_debugger/pull/199)
- Create test_rrd_static_profile_report_with_suffix.py [`#201`](https://github.com/rdkcentral/remote_debugger/pull/201)
- RRD 1.3.5 release changelog updates [`d4cf18c`](https://github.com/rdkcentral/remote_debugger/commit/d4cf18c35368a34acb7eb7408e2b2e982c466187)
- Merge tag '1.3.4' into develop [`4941e38`](https://github.com/rdkcentral/remote_debugger/commit/4941e3899ab9217382788296594cd14350586268)

#### [1.3.4](https://github.com/rdkcentral/remote_debugger/compare/1.3.3...1.3.4)
Expand Down
4 changes: 2 additions & 2 deletions src/rrd_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ static int execute_command(const char *cmd, char *output, size_t output_size) {
return (status == 0 && strlen(output) > 0) ? 0 : -1;
}

// Helper: check if file exists
// Helper: check if file exists and has non-zero size
static bool file_exists(const char *filepath) {
if (!filepath) return false;
struct stat st;
return (stat(filepath, &st) == 0);
return (stat(filepath, &st) == 0 && S_ISREG(st.st_mode) && st.st_size > 0);
Comment on lines +82 to +86
}

int rrd_config_load(rrd_config_t *config) {
Expand Down
Loading