From: uz Date: Sat, 10 Mar 2012 22:13:36 +0000 (+0000) Subject: Free bitmaps and buffers before terminating. X-Git-Tag: V2.14~465 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=df036dbeaf616d02717580bde94b25c179214e4e;p=cc65 Free bitmaps and buffers before terminating. git-svn-id: svn://svn.cc65.org/cc65/trunk@5598 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/sp65/main.c b/src/sp65/main.c index a6b63ce20..1c0ca2701 100644 --- a/src/sp65/main.c +++ b/src/sp65/main.c @@ -373,6 +373,11 @@ int main (int argc, char* argv []) ++I; } + /* Cleanup data */ + FreeBitmap (B); + FreeBitmap (C); + FreeStrBuf (D); + /* Success */ return EXIT_SUCCESS; }