We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9b0d3 commit c667eccCopy full SHA for c667ecc
1 file changed
plugins/ffap/ffap.c
@@ -656,7 +656,11 @@ ape_free_ctx (APEContext *ape_ctx) {
656
}
657
for (i = 0; i < APE_FILTER_LEVELS; i++) {
658
if (ape_ctx->filterbuf[i]) {
659
+#ifdef __MINGW32__
660
+ __mingw_aligned_free (ape_ctx->filterbuf[i]);
661
+#else
662
free (ape_ctx->filterbuf[i]);
663
+#endif
664
ape_ctx->filterbuf[i] = NULL;
665
666
0 commit comments