mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 16:55:10 +00:00
[FIX] Log error if the config was not parsed
This commit is contained in:
parent
f9de7f1750
commit
b485298fbc
1 changed files with 6 additions and 0 deletions
|
|
@ -36,6 +36,12 @@ ParseeConfigLoad(char *conf)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
json = JsonDecode(stream);
|
json = JsonDecode(stream);
|
||||||
|
if (!json)
|
||||||
|
{
|
||||||
|
Log(LOG_ERR, "Could not parse config JSON");
|
||||||
|
StreamClose(stream);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
config = Malloc(sizeof(*config));
|
config = Malloc(sizeof(*config));
|
||||||
#define CopyToStr(to, str) config->to = StrDuplicate( \
|
#define CopyToStr(to, str) config->to = StrDuplicate( \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue