kopia lustrzana https://github.com/Hamlib/Hamlib
rig_cleanup and rig_close not calling backend
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@300 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.1.1
rodzic
7c74e25db9
commit
a069fad9f8
|
@ -2,7 +2,7 @@
|
||||||
Copyright (C) 2000 Stephane Fillod and Frank Singleton
|
Copyright (C) 2000 Stephane Fillod and Frank Singleton
|
||||||
This file is part of the hamlib package.
|
This file is part of the hamlib package.
|
||||||
|
|
||||||
$Id: rig.c,v 1.11 2000-12-05 22:01:02 f4cfe Exp $
|
$Id: rig.c,v 1.12 2000-12-22 00:56:00 javabear Exp $
|
||||||
|
|
||||||
Hamlib is free software; you can redistribute it and/or modify it
|
Hamlib is free software; you can redistribute it and/or modify it
|
||||||
under the terms of the GNU General Public License as published by
|
under the terms of the GNU General Public License as published by
|
||||||
|
@ -278,7 +278,7 @@ int rig_close(RIG *rig)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_VERBOSE,"rig:rig_close called \n");
|
rig_debug(RIG_DEBUG_VERBOSE,"rig:rig_close called \n");
|
||||||
|
|
||||||
if (rig == NULL || rig->caps)
|
if (! rig || !rig->caps)
|
||||||
return -RIG_EINVAL;
|
return -RIG_EINVAL;
|
||||||
|
|
||||||
if (rig->state.transceive) {
|
if (rig->state.transceive) {
|
||||||
|
@ -315,7 +315,7 @@ int rig_cleanup(RIG *rig)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_VERBOSE,"rig:rig_cleanup called \n");
|
rig_debug(RIG_DEBUG_VERBOSE,"rig:rig_cleanup called \n");
|
||||||
|
|
||||||
if (rig == NULL || rig->caps)
|
if (!rig || !rig->caps)
|
||||||
return -RIG_EINVAL;
|
return -RIG_EINVAL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Ładowanie…
Reference in New Issue