From 3bd0a2eb975d93be5329021580a7ea55681e636f Mon Sep 17 00:00:00 2001 From: Ross Gouldthorpe Date: Fri, 7 Feb 2025 07:42:24 +0000 Subject: [PATCH] Fix for crashing when deleting a favorite (#216) Fix for crashing when deleting a favorite ## Description Fixed a bounds check that allowed the copy loop to go out of bounds. ## Motivation and Context ## How Has This Been Tested? ## Screenshots ## Types of changes - [ ] Improvement (non-breaking change that adds a new feature) - [x] Bug fix (fixes an issue) - [ ] Breaking change (breaking change) - [ ] Documentation Improvement - [ ] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: - [x] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Signed-off-by: GITHUB_USER --- src/menu/bookkeeping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menu/bookkeeping.c b/src/menu/bookkeeping.c index dbd0045a..bbdbcc3f 100644 --- a/src/menu/bookkeeping.c +++ b/src/menu/bookkeeping.c @@ -111,7 +111,7 @@ static void bookkeeping_clear_item(bookkeeping_item_t *item, bool leave_null) { static void bookkeeping_copy_item(bookkeeping_item_t *source, bookkeeping_item_t *destination) { bookkeeping_clear_item(destination, true); - destination->primary_path = path_clone(source->primary_path); + destination->primary_path = source->primary_path != NULL ? path_clone(source->primary_path) : path_create(""); destination->secondary_path = source->secondary_path != NULL ? path_clone(source->secondary_path) : path_create(""); destination->bookkeeping_type = source->bookkeeping_type; } @@ -134,7 +134,7 @@ static void bookkeeping_move_items_up(bookkeeping_item_t *list, int start, int e int current = start; do { - if(current > end) { + if(current >= end) { break; }