summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2018-07-02 13:45:55 +0000
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-07-02 15:55:50 +0200
commit6d6f943acda368353bc7235496d348c98c85eb7b (patch)
tree44ce02fbbb5287ef37da3bf22cdad9d79cf27c3c
parent7d3ab4a32294e489d80b5fb4b0af8f36f97ef723 (diff)
downloadefl-6d6f943acda368353bc7235496d348c98c85eb7b.tar.gz
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
-rw-r--r--src/lib/elementary/efl_ui_calendar.c2
1 files changed, 1 insertions, 1 deletions
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;