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

Should have been done as a part of 9f681bea68.
This commit is contained in:
2019-05-04 20:34:56 +02:00
parent c02534469a
commit c68c81a870

View File

@@ -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;