Assure NULL terminated strings in kit file.

Various strncpy operations could result in a port pathname that is not a
NULL terminated string as the allowed string length is the same size as
the buffer per the strncpy manual page.  This is corrected by assuring
that the allowed length is FILPATHLEN - 1.
Hamlib-1.2.15
Nate Bargmann 2012-01-07 22:17:09 -06:00
rodzic 4863209a07
commit db3afff112
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -198,7 +198,7 @@ static unsigned compute_sample_rate(const struct hiqsdr_priv_data *priv)
rx_control = (unsigned)(priv->ref_clock / (8. * 8. * priv->sample_rate)) - 1;
if (rx_control > 39)
rx_control = 39;
rx_control = 39;
return rx_control;
}
@ -269,7 +269,7 @@ int hiqsdr_init(RIG *rig)
priv->split = RIG_SPLIT_OFF;
priv->ref_clock = REFCLOCK;
priv->sample_rate = DEFAULT_SAMPLE_RATE;
strncpy(rig->state.rigport.pathname, "192.168.2.196:48248", FILPATHLEN);
strncpy(rig->state.rigport.pathname, "192.168.2.196:48248", FILPATHLEN - 1);
return RIG_OK;
}