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

git pushed a commit to reference refs/pull/98/head
in repository efl.

View the commit online.

commit 1ba8a354a958f1aca75085b757b37e58e3812597
Author: BZZZZ2 <[email protected]>
AuthorDate: Tue Sep 30 18:42:57 2025 +0000

    eet - (version 3 file format) don't fail if dictionary string is immediately after dictionary or immediately before end of file
    
    ```bash
    rm asd.eet
    echo 'group ASDFGHJ struct { }' > asd.txt
    eet -e asd.eet ASD_KEY asd.txt 0
    eet -r asd.eet ASD_KEY
    eet -t asd.eet # ← fails before this commit
    ```
---
 src/lib/eet/eet_lib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/eet/eet_lib.c b/src/lib/eet/eet_lib.c
index 8794b221ae..d77b65ee3e 100644
--- a/src/lib/eet/eet_lib.c
+++ b/src/lib/eet/eet_lib.c
@@ -969,10 +969,10 @@ eet_internal_read2(Eet_File *ef)
 
              /* Check string position */
              if (eet_test_close(!((ef->ed->all[j].len > 0)
-                                  && (offset >
+                                  && (offset >=
                                       (bytes_dictionary_entries +
                                        bytes_directory_entries))
-                                  && (offset + ef->ed->all[j].len <
+                                  && (offset + ef->ed->all[j].len <=
                                       ef->data_size)), ef))
                return NULL;
 

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

Reply via email to