Skip to content

Commit

Permalink
Fix bug introduced with previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
c-lipka committed Nov 21, 2016
1 parent 2b12beb commit e592aaf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/base/version.h
Expand Up @@ -45,7 +45,7 @@
#define OFFICIAL_VERSION_STRING "3.7.1"
#define OFFICIAL_VERSION_NUMBER 371

#define POV_RAY_PRERELEASE "x.dictionary.8884653"
#define POV_RAY_PRERELEASE "x.dictionary.8884712"

#if (POV_RAY_IS_AUTOBUILD == 1) && ((POV_RAY_IS_OFFICIAL == 1) || (POV_RAY_IS_SEMI_OFFICIAL == 1))
#ifdef POV_RAY_PRERELEASE
Expand Down
3 changes: 1 addition & 2 deletions source/parser/parser_tokenizer.cpp
Expand Up @@ -1257,7 +1257,7 @@ void Parser::Read_Symbol()
SYM_ENTRY *Temp_Entry;
POV_PARAM *Par;
DBL val;
SYM_TABLE *table;
SYM_TABLE *table = NULL;
char *dictIndex = NULL;
int pseudoDictionary = -1;

Expand Down Expand Up @@ -1326,7 +1326,6 @@ void Parser::Read_Symbol()
/* Search tables from newest to oldest */
int firstIndex = Table_Index;
int lastIndex = SYM_TABLE_RESERVED+1; // index SYM_TABLE_RESERVED is reserved for reserved words, not identifiers
Temp_Entry = NULL;
for (Local_Index = firstIndex; Local_Index >= lastIndex; Local_Index--)
{
/* See if it's a previously declared identifier. */
Expand Down
2 changes: 1 addition & 1 deletion unix/VERSION
@@ -1 +1 @@
3.7.1-x.dictionary.8884653
3.7.1-x.dictionary.8884712

0 comments on commit e592aaf

Please sign in to comment.