Browse Source

OpenDDLExport: Reduce scope of a variable

Turo Lamminen 7 years ago
parent
commit
fc59f190ae
1 changed files with 1 additions and 2 deletions
  1. 1 2
      contrib/openddlparser/code/OpenDDLExport.cpp

+ 1 - 2
contrib/openddlparser/code/OpenDDLExport.cpp

@@ -359,11 +359,10 @@ bool OpenDDLExport::writeValueArray( DataArrayList *al, std::string &statement )
     }
     }
 
 
     DataArrayList *nextDataArrayList = al ;
     DataArrayList *nextDataArrayList = al ;
-    Value *nextValue( nextDataArrayList->m_dataList );
     while (ddl_nullptr != nextDataArrayList) {
     while (ddl_nullptr != nextDataArrayList) {
         if (ddl_nullptr != nextDataArrayList) {
         if (ddl_nullptr != nextDataArrayList) {
             statement += "{ ";
             statement += "{ ";
-            nextValue = nextDataArrayList->m_dataList;
+            Value *nextValue( nextDataArrayList->m_dataList );
             size_t idx( 0 );
             size_t idx( 0 );
             while (ddl_nullptr != nextValue) {
             while (ddl_nullptr != nextValue) {
                 if (idx > 0) {
                 if (idx > 0) {