File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/ini_load.cpp
Show inline comments
 
@@ -226,7 +226,7 @@ void IniLoadFile::LoadFromDisk(const std
 
			uint a = comment_alloc;
 
			/* add to comment */
 
			if (ns > a) {
 
				a = max(a, 128U);
 
				a = std::max(a, 128U);
 
				do a *= 2; while (a < ns);
 
				comment = ReallocT(comment, comment_alloc = a);
 
			}