]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Removed a free() that does not belong there (the function
authorc vw <dl1ycf@darc.de>
Mon, 3 May 2021 07:39:47 +0000 (09:39 +0200)
committerc vw <dl1ycf@darc.de>
Mon, 3 May 2021 07:39:47 +0000 (09:39 +0200)
affected is nowhere called, so no problem did arise).

ext.c

diff --git a/ext.c b/ext.c
index f1269f8cb7cec655a9ad9774fe77a953df28d430..54ebba89d006bbe67b1af1a332d4430d774065ab 100644 (file)
--- a/ext.c
+++ b/ext.c
@@ -177,7 +177,6 @@ int ext_vox_changed(void *data) {
 
 int ext_update_agc_gain(void *data) {
   update_agc_gain(GPOINTER_TO_INT(data));
-  free(data);
   return 0;
 }