From 5282c4d0030add3301eba64203ec26b14fee5264 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 6 May 2013 11:38:21 +0000 Subject: Fix for uninitialized variable in previous commit. --- source/blender/blenloader/intern/readfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') 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"); -- cgit v1.2.3