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:
authorChris Want <cwant@ualberta.ca>2003-11-06 20:17:52 +0300
committerChris Want <cwant@ualberta.ca>2003-11-06 20:17:52 +0300
commitec836b33906d0ae0bebf93b2b9319ca57ed12f1e (patch)
tree4655088a60e72a5973ffa9d44e399181c333d337 /source/blender/blenloader
parent94c6fae700baf696d0aea51cb08579dcb45b2117 (diff)
nla strips were not updating the reference counts of actions they
were using.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index a7acb42fdef..45670fc0c4b 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -1178,7 +1178,7 @@ static void lib_link_nlastrips(FileData *fd, ID *id, ListBase *striplist)
bActionStrip *strip;
for (strip=striplist->first; strip; strip=strip->next){
- strip->act = newlibadr(fd, id->lib, strip->act);
+ strip->act = newlibadr_us(fd, id->lib, strip->act);
strip->ipo = newlibadr(fd, id->lib, strip->ipo);
};
}