You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/tinyxml2/files/tinyxml2-4.0.1-xmltest.patch

12 lines
302 B

--- tinyxml2-4.0.1/xmltest.cpp
+++ tinyxml2-4.0.1/xmltest.cpp
@@ -1618,7 +1618,7 @@
FILE* perfFP = fopen("resources/dream.xml", "r");
fseek(perfFP, 0, SEEK_END);
- long size = ftell(fp);
+ long size = ftell(perfFP);
fseek(perfFP, 0, SEEK_SET);
char* mem = new char[size + 1];