From 7f55db507ea9b7e2144bd10f6c08ee04956ecc28 Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 10 Jun 2020 12:44:46 +0200 Subject: [PATCH] Make send_resp terminate under all circumstances --- rigctl.c | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/rigctl.c b/rigctl.c index 08f5cda..8daf6ce 100644 --- a/rigctl.c +++ b/rigctl.c @@ -549,12 +549,24 @@ long long rigctl_getFrequency() { void send_resp (int fd,char * msg) { if(rigctl_debug) g_print("RIGCTL: RESP=%s\n",msg); int length=strlen(msg); - int written=0; + int rc; + int count=0; - while(written0) { + rc=write(fd,msg,length); + if (rc < 0) return; + if (rc == 0) { + count++; + if (count > 10) return; + } + length -= rc; + msg += rc; } - } // @@ -2814,7 +2826,7 @@ int parse_cmd(void *data) { switch(vfo[active_receiver->id].mode) { case modeCWL: case modeCWU: - val=2*filter->high; + val=filter->low*2; break; case modeAM: case modeSAM: -- 2.45.2