kopia lustrzana https://github.com/Hamlib/Hamlib
Fix cppcheck warnings in winradio
rodzic
49ce282c2f
commit
47376d9004
|
@ -190,14 +190,16 @@ int g3_init(RIG *rig)
|
|||
{
|
||||
struct g3_priv_data *priv;
|
||||
|
||||
priv = (struct g3_priv_data *)malloc(sizeof(struct g3_priv_data));
|
||||
rig->state.priv = (struct g3_priv_data *)malloc(sizeof(struct g3_priv_data));
|
||||
|
||||
if (!priv)
|
||||
if (!rig->state.priv)
|
||||
{
|
||||
/* whoops! memory shortage! */
|
||||
return -RIG_ENOMEM;
|
||||
}
|
||||
|
||||
priv = rig->state.priv;
|
||||
|
||||
/* Try to load required dll */
|
||||
priv->dll = LoadLibrary(WRG3DLL);
|
||||
|
||||
|
@ -232,8 +234,6 @@ int g3_init(RIG *rig)
|
|||
(FNCGetRawSignalStrength) GetProcAddress(priv->dll, "GetRawSignalStrength");
|
||||
priv->G3GetInfo = (FNCG3GetInfo) GetProcAddress(priv->dll, "G3GetInfo");
|
||||
|
||||
rig->state.priv = (void *)priv;
|
||||
|
||||
return RIG_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -191,14 +191,16 @@ int g3_init(RIG *rig)
|
|||
{
|
||||
struct g3_priv_data *priv;
|
||||
|
||||
priv = (struct g3_priv_data *)malloc(sizeof(struct g3_priv_data));
|
||||
rig->state.priv = (struct g3_priv_data *)malloc(sizeof(struct g3_priv_data));
|
||||
|
||||
if (!priv)
|
||||
if (!rig->state.priv)
|
||||
{
|
||||
/* whoops! memory shortage! */
|
||||
return -RIG_ENOMEM;
|
||||
}
|
||||
|
||||
priv = rig->state.priv;
|
||||
|
||||
/* Try to load required dll */
|
||||
priv->dll = LoadLibrary(WRG3DLL);
|
||||
|
||||
|
@ -233,8 +235,6 @@ int g3_init(RIG *rig)
|
|||
(FNCGetRawSignalStrength) GetProcAddress(priv->dll, "GetRawSignalStrength");
|
||||
priv->G3GetInfo = (FNCG3GetInfo) GetProcAddress(priv->dll, "G3GetInfo");
|
||||
|
||||
rig->state.priv = (void *)priv;
|
||||
|
||||
return RIG_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -233,14 +233,16 @@ int g313_init(RIG *rig)
|
|||
{
|
||||
struct g313_priv_data *priv;
|
||||
|
||||
priv = (struct g313_priv_data *)malloc(sizeof(struct g313_priv_data));
|
||||
rig->state.priv = (struct g313_priv_data *)malloc(sizeof(struct g313_priv_data));
|
||||
|
||||
if (!priv)
|
||||
if (!rig->state.priv)
|
||||
{
|
||||
/* whoops! memory shortage! */
|
||||
return -RIG_ENOMEM;
|
||||
}
|
||||
|
||||
priv = rig->state.priv;
|
||||
|
||||
priv->WaveOutDeviceID = -1;
|
||||
|
||||
priv->Opened = 0;
|
||||
|
@ -341,8 +343,6 @@ int g313_init(RIG *rig)
|
|||
"waveOutGetNumDevs");
|
||||
|
||||
|
||||
rig->state.priv = (void *)priv;
|
||||
|
||||
|
||||
return RIG_OK;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue