Skip to content
Snippets Groups Projects
Commit fb4f255c authored by Willian Padovani Germano's avatar Willian Padovani Germano
Browse files

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.
parent 630a0536
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
......@@ -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) ? */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment