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_interface.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_interface.c')
-rw-r--r--source/blender/python/BPY_interface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/BPY_interface.c b/source/blender/python/BPY_interface.c
index 9eb82b619aa..53a3b6f91d4 100644
--- a/source/blender/python/BPY_interface.c
+++ b/source/blender/python/BPY_interface.c
@@ -608,9 +608,10 @@ int BPY_menu_do_python(short menutype, int event)
len = ftell(fp);
fseek(fp, 0L, SEEK_SET);
- buffer = MEM_mallocN(len+1, "pyfilebuf"); /* len+1 to add '\0' */
+ buffer = MEM_mallocN(len+2, "pyfilebuf"); /* len+2 to add '\n\0' */
len = fread(buffer, 1, len, fp);
+ buffer[len-1] = '\n'; /* to fix potential syntax error */
buffer[len] = '\0';
/* fast clean-up of dos cr/lf line endings: change '\r' to space */