From 20c5c5e14ba0820b106945331f07909a756ff2d3 Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Tue, 28 Jul 2015 17:39:55 +0200 Subject: Audaspace: fixing a memory access violation in the audio device list. --- source/blender/blenkernel/intern/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c index 88d14333fb2..5584b087e40 100644 --- a/source/blender/blenkernel/intern/sound.c +++ b/source/blender/blenkernel/intern/sound.c @@ -842,7 +842,7 @@ char** BKE_sound_get_device_names(void) audio_device_names = AUD_getDeviceNames(); #else static const char* names[] = { - "Null", "SDL", "OpenAL", "Jack" + "Null", "SDL", "OpenAL", "Jack", NULL }; audio_device_names = (char**)names; #endif -- cgit v1.2.3