]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Make send_resp terminate under all circumstances
authorc vw <dl1ycf@darc.de>
Wed, 10 Jun 2020 10:44:46 +0000 (12:44 +0200)
committerc vw <dl1ycf@darc.de>
Wed, 10 Jun 2020 10:44:46 +0000 (12:44 +0200)
rigctl.c

index 08f5cda317d6d1e71388524dc569b5f1446f1d88..8daf6ce64e55b3966892d59b848c8e9f4b7bd16d 100644 (file)
--- 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(written<length) {
-    written+=write(fd,&msg[written],length-written);   
+//
+// We have to make sure that send_resp quickly returns
+// if something goes wrong, because it is executed in the
+// GTK idle loop
+//
+  while(length>0) {
+    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: