This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit e1d74347995836d63e16a9b0387e092d076a3b41
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Sep 23 00:49:01 2024 +0100
ecore-x: resource db flush - fix tmpstr use to del after use
this looks like a pretty bad oversight! del tmpstr AFTER using not
before...
@fix
---
src/lib/ecore_x/ecore_x_resource.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/ecore_x/ecore_x_resource.c b/src/lib/ecore_x/ecore_x_resource.c
index fe6f8ccd42..206bdb0189 100644
--- a/src/lib/ecore_x/ecore_x_resource.c
+++ b/src/lib/ecore_x/ecore_x_resource.c
@@ -112,7 +112,7 @@ ecore_x_resource_db_flush(void)
free(str);
}
}
- eina_tmpstr_del(path);
close(fd);
unlink(path);
+ eina_tmpstr_del(path);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.