This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository rage.

View the commit online.

commit 9253cfbe8c58c5864f6514ccc03dd4479b7d7638
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Mon Jun 8 23:05:19 2026 +0100

    browser - handle some -1 sel positions - fix
---
 src/bin/browser.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/bin/browser.c b/src/bin/browser.c
index 4daaeed..95c0b25 100644
--- a/src/bin/browser.c
+++ b/src/bin/browser.c
@@ -794,6 +794,7 @@ _sel_object_find(Entry *entry)
 {
    int num = (entry->sel_y * entry->cols) + entry->sel_x;
    if (!entry->file_obj) return NULL;
+   if (num < 0) return NULL;
    Evas_Object *o = entry->file_obj[num];
    return o;
 }
@@ -802,6 +803,7 @@ static const char *
 _sel_file_find(Entry *entry)
 {
    int num = (entry->sel_y * entry->cols) + entry->sel_x;
+   if (num < 0) return NULL;
    const char *file = eina_list_nth(entry->files, num);
    return file;
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to