From: c vw Date: Mon, 3 May 2021 07:39:47 +0000 (+0200) Subject: Removed a free() that does not belong there (the function X-Git-Url: https://git.rkrishnan.org/listings/vdrive/index.php?a=commitdiff_plain;h=002d1416d243b571a358d8037de2663d04463853;p=pihpsdr.git Removed a free() that does not belong there (the function affected is nowhere called, so no problem did arise). --- diff --git a/ext.c b/ext.c index f1269f8..54ebba8 100644 --- 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; }