mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
hekate: always init sublist on section creation
Even if there are no edge cases here
This commit is contained in:
parent
369df25cd3
commit
75b7d91abf
1 changed files with 3 additions and 1 deletions
|
@ -89,6 +89,9 @@ static ini_kip_sec_t *_ini_create_kip_section(link_t *dst, ini_kip_sec_t *ksec,
|
||||||
// Get hash section.
|
// Get hash section.
|
||||||
_htoa(ksec->hash, &name[i], 8, NULL);
|
_htoa(ksec->hash, &name[i], 8, NULL);
|
||||||
|
|
||||||
|
// Initialize list.
|
||||||
|
list_init(&ksec->pts);
|
||||||
|
|
||||||
return ksec;
|
return ksec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,7 +125,6 @@ int ini_patch_parse(link_t *dst, char *ini_path)
|
||||||
|
|
||||||
// Set patchset kip name and hash.
|
// Set patchset kip name and hash.
|
||||||
ksec = _ini_create_kip_section(dst, ksec, &lbuf[1]);
|
ksec = _ini_create_kip_section(dst, ksec, &lbuf[1]);
|
||||||
list_init(&ksec->pts);
|
|
||||||
}
|
}
|
||||||
else if (ksec && lbuf[0] == '.') // Extract key/value.
|
else if (ksec && lbuf[0] == '.') // Extract key/value.
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue