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>2013-05-06 15:38:21 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-05-06 15:38:21 +0400
commit5282c4d0030add3301eba64203ec26b14fee5264 (patch)
treeee2facde06a19ebde97fa934b722d21a281f6952
parentb299b039f7d0f0baa65242f918066cdc808a71ce (diff)
Fix for uninitialized variable in previous commit.
-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 4062f57d4eb..752f66c96a4 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -7019,7 +7019,7 @@ static BHead *read_libblock(FileData *fd, Main *main, BHead *bhead, int flag, ID
ID *id;
ListBase *lb;
const char *allocname;
- bool wrong_id;
+ bool wrong_id = false;
/* read libblock */
id = read_struct(fd, bhead, "lib block");