From 6d6f943acda368353bc7235496d348c98c85eb7b Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Mon, 2 Jul 2018 13:45:55 +0000 Subject: [PATCH] elementary: fix buffer overflow in efl/calendar widget I missed this one in the previous part name refactor, where the efl namespace was added. Differential Revision: https://phab.enlightenment.org/D6498 --- src/lib/elementary/efl_ui_calendar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_calendar.c b/src/lib/elementary/efl_ui_calendar.c index 94d2e112be..7eedec1f1f 100644 --- a/src/lib/elementary/efl_ui_calendar.c +++ b/src/lib/elementary/efl_ui_calendar.c @@ -225,7 +225,7 @@ static void _access_calendar_item_register(Evas_Object *obj) { unsigned int maxdays, i; - char day_s[13], pname[14]; + char day_s[13], pname[18]; unsigned day = 0; Evas_Object *ao;