Skip to content

Commit e592aaf

Browse files
committed
Fix bug introduced with previous commit.
1 parent 2b12beb commit e592aaf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

source/base/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#define OFFICIAL_VERSION_STRING "3.7.1"
4646
#define OFFICIAL_VERSION_NUMBER 371
4747

48-
#define POV_RAY_PRERELEASE "x.dictionary.8884653"
48+
#define POV_RAY_PRERELEASE "x.dictionary.8884712"
4949

5050
#if (POV_RAY_IS_AUTOBUILD == 1) && ((POV_RAY_IS_OFFICIAL == 1) || (POV_RAY_IS_SEMI_OFFICIAL == 1))
5151
#ifdef POV_RAY_PRERELEASE

source/parser/parser_tokenizer.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ void Parser::Read_Symbol()
12571257
SYM_ENTRY *Temp_Entry;
12581258
POV_PARAM *Par;
12591259
DBL val;
1260-
SYM_TABLE *table;
1260+
SYM_TABLE *table = NULL;
12611261
char *dictIndex = NULL;
12621262
int pseudoDictionary = -1;
12631263

@@ -1326,7 +1326,6 @@ void Parser::Read_Symbol()
13261326
/* Search tables from newest to oldest */
13271327
int firstIndex = Table_Index;
13281328
int lastIndex = SYM_TABLE_RESERVED+1; // index SYM_TABLE_RESERVED is reserved for reserved words, not identifiers
1329-
Temp_Entry = NULL;
13301329
for (Local_Index = firstIndex; Local_Index >= lastIndex; Local_Index--)
13311330
{
13321331
/* See if it's a previously declared identifier. */

unix/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.1-x.dictionary.8884653
1+
3.7.1-x.dictionary.8884712

0 commit comments

Comments
 (0)