This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch v-0.25.0
in repository enlightenment.
View the commit online.
commit 527f62f0342282ab9f9d23a916cef4b156409d7b
Author: Carsten Haitzler <[email protected]>
AuthorDate: Mon Mar 20 17:00:48 2023 +0000
0.25 stable - fix uninit var usage - bad backporting of fixes
@fix
---
src/bin/e_config.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/e_config.c b/src/bin/e_config.c
index 22c63ef4e..887f5b30f 100644
--- a/src/bin/e_config.c
+++ b/src/bin/e_config.c
@@ -190,7 +190,7 @@ _e_config_pending_file_del(const char *path)
eina_hash_del(_e_config_pending_files, path, ef);
eina_lock_release(&_e_config_pending_files_lock);
- eet_close(ef);
+ err = eet_close(ef);
switch (err)
{
case EET_ERROR_NONE:
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.