Sfoglia il codice sorgente

Use correct file pointer

Armagetron 9 anni fa
parent
commit
3c21d6fbb7
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      xmltest.cpp

+ 1 - 1
xmltest.cpp

@@ -1618,7 +1618,7 @@ int main( int argc, const char ** argv )
 
 
 		FILE* perfFP = fopen("resources/dream.xml", "r");
 		FILE* perfFP = fopen("resources/dream.xml", "r");
 		fseek(perfFP, 0, SEEK_END);
 		fseek(perfFP, 0, SEEK_END);
-		long size = ftell(fp);
+		long size = ftell(perfFP);
 		fseek(perfFP, 0, SEEK_SET);
 		fseek(perfFP, 0, SEEK_SET);
 
 
 		char* mem = new char[size + 1];
 		char* mem = new char[size + 1];