This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository edi.
View the commit online.
commit 483b08ce6593085ab00124b6dc1a179bb6cbc0fa
Author: Christopher Michael <[email protected]>
AuthorDate: Wed Oct 19 09:11:07 2022 -0400
edi_main: Fix "use after free" compiler warning
---
src/bin/edi_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/edi_main.c b/src/bin/edi_main.c
index 0a38eb7..84d2059 100644
--- a/src/bin/edi_main.c
+++ b/src/bin/edi_main.c
@@ -232,9 +232,9 @@ _edi_slide_panel_free(Elm_Transit_Effect *effect, Elm_Transit *transit EINA_UNUS
slide = (Edi_Panel_Slide_Effect *) effect;
if (!slide->expand)
evas_object_hide(slide->content);
- free(slide);
_edi_panel_size_save(slide->left);
+ free(slide);
}
static void
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.