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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-18 18:59:31 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-18 19:00:50 +0300
commitf2a21472c4939bf0b5666ec654bbc12bbc6a6e81 (patch)
tree1580664383f3d546ad34f039c290ebece14b5b79 /source/blender/blenlib/intern
parent0e3a2acbfa6998b3a1ec967f3c25f7e12e0cf8fb (diff)
Fix T61473: Crash particle system is updating
Original and localized particle settings were sharing some of the runtime pointers.
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/rand.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/rand.c b/source/blender/blenlib/intern/rand.c
index 262ae67a5f7..e453d5a01f8 100644
--- a/source/blender/blenlib/intern/rand.c
+++ b/source/blender/blenlib/intern/rand.c
@@ -76,6 +76,11 @@ RNG *BLI_rng_new_srandom(unsigned int seed)
return rng;
}
+RNG *BLI_rng_copy(RNG *rng)
+{
+ return MEM_dupallocN(rng);
+}
+
void BLI_rng_free(RNG *rng)
{
MEM_freeN(rng);