phc2sys: fix PPS mode with no source clock.

When using a PPS source with no source clock specified with the -s
option, avoid referencing a NULL pointer and using CLOCK_INVALID in
system calls.

Signed-off-by: Miroslav Lichvar <mlichvar@redhat.com>
master
Miroslav Lichvar 2018-04-19 16:35:11 +02:00 committed by Richard Cochran
parent 966eff0161
commit a335ac556a
1 changed files with 4 additions and 3 deletions

View File

@ -221,7 +221,7 @@ static struct clock *clock_add(struct node *node, char *device)
c->clkid = clkid;
c->phc_index = phc_index;
c->servo_state = SERVO_UNLOCKED;
c->device = strdup(device);
c->device = device ? strdup(device) : NULL;
if (c->clkid == CLOCK_REALTIME) {
c->source_label = "sys";
@ -249,9 +249,10 @@ static struct clock *clock_add(struct node *node, char *device)
}
}
c->servo = servo_add(node, c);
if (clkid != CLOCK_INVALID)
c->servo = servo_add(node, c);
if (clkid != CLOCK_REALTIME)
if (clkid != CLOCK_INVALID && clkid != CLOCK_REALTIME)
c->sysoff_supported = (SYSOFF_SUPPORTED ==
sysoff_probe(CLOCKID_TO_FD(clkid),
node->phc_readings));