From 8f4a01568460ad20c5a5c8a39feadea512e60d8f Mon Sep 17 00:00:00 2001 From: Alexander Kuznetsov Date: Sat, 22 Oct 2011 04:36:58 +0000 Subject: Fix for alt-tab in Windows. utf8_buf can be not null terminated, plus not init as in this case. (I need to investigate more) --- source/blender/windowmanager/intern/wm_event_system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c index bed75f58e58..177dd560838 100644 --- a/source/blender/windowmanager/intern/wm_event_system.c +++ b/source/blender/windowmanager/intern/wm_event_system.c @@ -2611,7 +2611,7 @@ void wm_event_add_ghostevent(wmWindowManager *wm, wmWindow *win, int type, int U GHOST_TEventKeyData *kd= customdata; event.type= convert_key(kd->key); event.ascii= kd->ascii; - strcpy(event.utf8_buf, kd->utf8_buf); + memcpy(event.utf8_buf, kd->utf8_buf,sizeof(event.utf8_buf));/* might be not null terminated*/ event.val= (type==GHOST_kEventKeyDown)?KM_PRESS:KM_RELEASE; /* exclude arrow keys, esc, etc from text input */ -- cgit v1.2.3