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 f9adeb82a8c6593c04aba932b2da7e824012d7fc
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Mon Jun 8 22:23:27 2026 +0100

    fix div by zero for a browser entry
---
 src/bin/browser.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bin/browser.c b/src/bin/browser.c
index f7f76ce..9f00385 100644
--- a/src/bin/browser.c
+++ b/src/bin/browser.c
@@ -334,7 +334,8 @@ _entry_files_pop_eval(Evas_Object *win, Entry *entry)
    file_rect.y -= 80;
    file_rect.w += 160;
    file_rect.h += 160;
-   if (!eina_rectangles_intersect(&win_rect, &file_rect))
+   if ((!eina_rectangles_intersect(&win_rect, &file_rect)) ||
+       (entry->cols <= 0) || (entry->rows <= 0))
      {
         _entry_files_pop_clear(entry);
         return;

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

Reply via email to