diff --git a/mx_util.c b/mx_util.c index efde13f..790fc6b 100644 --- a/mx_util.c +++ b/mx_util.c @@ -1126,7 +1126,7 @@ void mx_strvec_free(char **strvec) return; for (sv = strvec; *sv; sv++) { - free(sv); + free(*sv); } free(strvec); }