File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/ini_load.cpp
Show inline comments
 
@@ -223,13 +223,13 @@ void IniLoadFile::LoadFromDisk(const std
 
		/* Skip comments and empty lines outside IGT_SEQUENCE groups. */
 
		if ((group == nullptr || group->type != IGT_SEQUENCE) && (*s == '#' || *s == ';' || *s == '\0')) {
 
			uint ns = comment_size + (e - s + 1);
 
			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);
 
			}
 
			uint pos = comment_size;
 
			comment_size += (e - s + 1);
 
			comment[pos + e - s] = '\n'; // comment newline