fix segmentation fault
This commit is contained in:
parent
1f322e9bb9
commit
441cee0900
1 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ struct INIUnit
|
|||
void
|
||||
opIndexAssign(string v, string k)
|
||||
{
|
||||
this[defaultSection][k] = v;
|
||||
sections[defaultSection][k] = v;
|
||||
}
|
||||
|
||||
/++
|
||||
|
@ -189,7 +189,7 @@ struct INIUnit
|
|||
void
|
||||
opIndexAssign(INISection v, string sect)
|
||||
{
|
||||
this[sect] = v;
|
||||
sections[sect] = v;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue