From 8309297564a6b274aa4a4a4c4b16794074d210f2 Mon Sep 17 00:00:00 2001 From: Gildas Bazin <gbazin@videolan.org> Date: Mon, 14 Apr 2003 22:29:06 +0000 Subject: [PATCH] * modules/gui/skins/src/event.cpp: fixed another small buffer overrun. --- modules/gui/skins/src/event.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gui/skins/src/event.cpp b/modules/gui/skins/src/event.cpp index 6092837539..a7c22f78c4 100644 --- a/modules/gui/skins/src/event.cpp +++ b/modules/gui/skins/src/event.cpp @@ -2,7 +2,7 @@ * event.cpp: Event class ***************************************************************************** * Copyright (C) 2003 VideoLAN - * $Id: event.cpp,v 1.7 2003/04/14 10:00:38 karibu Exp $ + * $Id: event.cpp,v 1.8 2003/04/14 22:29:06 gbazin Exp $ * * Authors: Olivier Teuli�re <ipkiss@via.ecp.fr> * Emmanuel Puig <karibu@via.ecp.fr> @@ -391,7 +391,7 @@ void Event::CreateShortcut() return; // Initiatization - char *mod = new char[4]; + char *mod = new char[5]; char *key = new char[4]; // Scan the event -- 2.25.4