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:
authorTon Roosendaal <ton@blender.org>2007-01-19 15:43:02 +0300
committerTon Roosendaal <ton@blender.org>2007-01-19 15:43:02 +0300
commitd2fd630e0af5c8380875293e1d5f100feca71898 (patch)
treee85f55bbc6749802e391ec35693538f827728526 /source/blender/src/usiblender.c
parent048c7879fa3879068a85aacc5c0304715b86353c (diff)
Bugfix #5748
Composite: when using multiple scene render-nodes, and one of these scenes got re-rendered (by making scene active temporary), the composite cache should free the used buffers. Now, on each render, all scenes in a Blender project are being checked.
Diffstat (limited to 'source/blender/src/usiblender.c')
-rw-r--r--source/blender/src/usiblender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/usiblender.c b/source/blender/src/usiblender.c
index 9568bc57bc6..ab6b15a1ae2 100644
--- a/source/blender/src/usiblender.c
+++ b/source/blender/src/usiblender.c
@@ -861,7 +861,7 @@ void BIF_init(void)
init_gl_stuff(); /* drawview.c, after homefile */
readBlog();
- strcpy(G.lib, G.sce);
+ BLI_strncpy(G.lib, G.sce, FILE_MAX);
}
/***/