gluon-mesh-vpn-fastd: fix respondd segfault under load

When running "fastd -v" fails, line may be NULL, causing a segfault in
strncmp.
This commit is contained in:
Matthias Schiffer 2022-08-06 18:52:49 +02:00
parent fa123e56d4
commit 8dd0f32c18
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

View File

@ -65,7 +65,7 @@ static struct json_object * get_fastd_version(void) {
}
const char *version = line;
if (strncmp(version, "fastd ", 6) == 0)
if (version && strncmp(version, "fastd ", 6) == 0)
version += 6;
struct json_object *ret = gluonutil_wrap_string(version);