Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2012-05-15 17:32:55 +0400
committerJoerg Mueller <nexyon@gmail.com>2012-05-15 17:32:55 +0400
commit715d870beaa7b84556696f9611ee77087959f48e (patch)
treee3abc3cb7ddd3c8e3131a29b43bc275927681db0
parent324b22f701e1b3bc33ed48d30e13b0ca419baa81 (diff)
Fix for [#31464] Crash when issuing command line render engine list ("-E help")
-rw-r--r--source/blender/blenkernel/intern/sound.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 52007f1f43e..28fb75db41c 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -173,6 +173,7 @@ void sound_force_device(int device)
void sound_init_once(void)
{
AUD_initOnce();
+ atexit(sound_exit);
}
void sound_init(struct Main *bmain)