*Core: Ini parser now skips space after '='

git-svn-id: svn://ultimatepp.org/upp/trunk@5900 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-03-12 13:44:16 +00:00
parent 545fafa5d0
commit ea0570abff

View file

@ -18,7 +18,7 @@ static void LoadIniStream(Stream& in, VectorMap<String, String>& key, const char
if(p.IsId()) {
String k = p.ReadId();
if(p.Char('='))
key.Add(k, p.GetSpacePtr());
key.Add(k, p.GetPtr());
}
else
if(p.Char('@')) {