Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dnn/fwgan.c')
-rw-r--r--dnn/fwgan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnn/fwgan.c b/dnn/fwgan.c
index 562ffe93..301c73f6 100644
--- a/dnn/fwgan.c
+++ b/dnn/fwgan.c
@@ -275,7 +275,7 @@ int fwgan_load_model(FWGANState *st, const unsigned char *data, int len) {
int ret;
parse_weights(&list, data, len);
ret = init_fwgan(&st->model, list);
- free(list);
+ opus_free(list);
if (ret == 0) return 0;
else return -1;
}