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

git pushed a commit to branch master
in repository legacy-imlib2.

View the commit online.

commit c69325d68cdfa0203c788449ab9ba3b6e927eedf
Author: Kim Woelders <[email protected]>
AuthorDate: Sat Oct 1 15:57:07 2022 +0200

    image: Fix potential use of uninitialized time stamps
---
 src/lib/image.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/image.c b/src/lib/image.c
index 4e54b9a..b688662 100644
--- a/src/lib/image.c
+++ b/src/lib/image.c
@@ -508,6 +508,7 @@ __imlib_LoadImage(const char *file, ImlibLoadArgs * ila)
      {
         err = 0;
         st.st_size = ila->fsize;
+        st.st_mtime = st.st_ctime = 0;
      }
    else if (ila->fp)
      {

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

Reply via email to