[Bf-blender-cvs] [c68c81a870b] master: Sound: Make sure spin lock is initialized for new sound datablocks

Sergey Sharybin noreply at git.blender.org
Sat May 4 20:36:28 CEST 2019


Commit: c68c81a870baa438a45e870aee677178632cce18
Author: Sergey Sharybin
Date:   Sat May 4 20:34:56 2019 +0200
Branches: master
https://developer.blender.org/rBc68c81a870baa438a45e870aee677178632cce18

Sound: Make sure spin lock is initialized for new sound datablocks

Should have been done as a part of 9f681bea68f.

===================================================================

M	source/blender/blenkernel/intern/sound.c

===================================================================

diff --git a/source/blender/blenkernel/intern/sound.c b/source/blender/blenkernel/intern/sound.c
index 7d335ab1347..d731c6e3eac 100644
--- a/source/blender/blenkernel/intern/sound.c
+++ b/source/blender/blenkernel/intern/sound.c
@@ -103,6 +103,9 @@ bSound *BKE_sound_new_file(Main *bmain, const char *filepath)
   BLI_strncpy(sound->name, filepath, FILE_MAX);
   /* sound->type = SOUND_TYPE_FILE; */ /* XXX unused currently */
 
+  sound->spinlock = MEM_mallocN(sizeof(SpinLock), "sound_spinlock");
+  BLI_spin_init(sound->spinlock);
+
   BKE_sound_reset_runtime(sound);
 
   return sound;



More information about the Bf-blender-cvs mailing list