Skip to content

Commit

Permalink
Super: Fix memory leak old as time
Browse files Browse the repository at this point in the history
  • Loading branch information
cantabile committed Feb 15, 2017
1 parent a2f5607 commit 766fd94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([MVTools], [17], [https://github.com/dubhater/vapoursynth-mvtools/issues], [MVTools], [https://github.com/dubhater/vapoursynth-mvtools/])
AC_INIT([MVTools], [18], [https://github.com/dubhater/vapoursynth-mvtools/issues], [MVTools], [https://github.com/dubhater/vapoursynth-mvtools/])

: ${CFLAGS=""}
: ${CXXFLAGS=""}
Expand Down
1 change: 1 addition & 0 deletions src/MVSuper.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ static void VS_CC mvsuperFree(void *instanceData, VSCore *core, const VSAPI *vsa
MVSuperData *d = (MVSuperData *)instanceData;

vsapi->freeNode(d->node);
vsapi->freeNode(d->pelclip);
free(d);
}

Expand Down

0 comments on commit 766fd94

Please sign in to comment.