kopia lustrzana https://github.com/Hamlib/Hamlib
Fix cppcheck warning in dds60.c
rodzic
d697dcb7fc
commit
6b4731b95e
|
@ -172,15 +172,15 @@ int dds60_init(RIG *rig)
|
||||||
{
|
{
|
||||||
struct dds60_priv_data *priv;
|
struct dds60_priv_data *priv;
|
||||||
|
|
||||||
priv = (struct dds60_priv_data *)malloc(sizeof(struct dds60_priv_data));
|
rig->state.priv = (struct dds60_priv_data *)malloc(sizeof(struct dds60_priv_data));
|
||||||
|
|
||||||
if (!priv)
|
if (!rig->state.priv)
|
||||||
{
|
{
|
||||||
/* whoops! memory shortage! */
|
/* whoops! memory shortage! */
|
||||||
return -RIG_ENOMEM;
|
return -RIG_ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
rig->state.priv = (void *)priv;
|
priv = rig->state.priv;
|
||||||
|
|
||||||
priv->osc_freq = OSCFREQ;
|
priv->osc_freq = OSCFREQ;
|
||||||
priv->if_mix_freq = IFMIXFREQ;
|
priv->if_mix_freq = IFMIXFREQ;
|
||||||
|
|
Ładowanie…
Reference in New Issue