libfreerdp-cache: fix bitmap_cache_free

This commit is contained in:
Anthony Tong 2011-10-30 22:19:38 -05:00
parent c0df26727a
commit 7cbedf6337
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ void bitmap_cache_free(rdpBitmapCache* bitmap_cache)
xfree(bitmap_cache->cells[i].entries);
}
bitmap_cache->bitmap->Free(bitmap_cache->context, bitmap);
bitmap_cache->bitmap->Free(bitmap_cache->context, bitmap_cache->bitmap);
xfree(bitmap_cache->cells);
xfree(bitmap_cache);