This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch devs/dimmus/meson
in repository efl.
View the commit online.
commit 73563333f8f3fb1a514807996a77fcc42e479780
Author: Vincent Torri <vto...@outlook.fr>
AuthorDate: Fri May 2 08:30:52 2025 +0200
Windows: fix buffer overflow in test_flip2()
MAX_PATH is 260 on Windows, while buf is used for a long message
---
src/bin/elementary/test_flip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/elementary/test_flip.c b/src/bin/elementary/test_flip.c
index 4e63ebae47..14f6cfe6df 100644
--- a/src/bin/elementary/test_flip.c
+++ b/src/bin/elementary/test_flip.c
@@ -271,7 +271,7 @@ void
test_flip2(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
Evas_Object *win, *bg, *bx, *bx2, *fl, *o, *bt, *tb, *li, *en;
- char buf[PATH_MAX];
+ char buf[4096];
win = elm_win_add(NULL, "flip2", ELM_WIN_BASIC);
elm_win_title_set(win, "Flip 2");
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.