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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-04-19 14:19:41 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-04-19 14:19:41 +0400
commitfb4f255c15cdc5616c8b00cd74c59e7002f38f5a (patch)
tree1cc7a2ceaec563dc5d965999e5bb518f03f73e45 /source/blender/python/BPY_menus.c
parent630a0536f836e2cd198a843960b2f04f3d47baf5 (diff)
BPython:
- Scripts that ended without an [eol] (end of line char) would give syntax errors when called from menus. Now all loaded menu scripts have '\\n\\0' appended to them, not only '\\0' as before. - bug #1146: Kester reported a Valgrind warning, should be fixed now.
Diffstat (limited to 'source/blender/python/BPY_menus.c')
-rw-r--r--source/blender/python/BPY_menus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/BPY_menus.c b/source/blender/python/BPY_menus.c
index d947eaa12e1..628f24b35f2 100644
--- a/source/blender/python/BPY_menus.c
+++ b/source/blender/python/BPY_menus.c
@@ -668,8 +668,8 @@ int BPyMenu_Init(int usedir)
char fname[FILE_MAXDIR+FILE_MAXFILE];
char dirname[FILE_MAXDIR];
char *upydir = U.pythondir;
- time_t tdir1, tdir2, tfile;
- int res1, res2, resf = 0;
+ time_t tdir1 = 0, tdir2 = 0, tfile = 0;
+ int res1 = 0, res2 = 0, resf = 0;
DEBUG = G.f & G_DEBUG; /* is Blender in debug mode (started with -d) ? */