mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-30 02:03:14 +03:00
Release temporary PNG/JNG memory as soon as possible
svn path=/trunk/netsurf/; revision=3101
This commit is contained in:
parent
74115a7a0d
commit
869d34232b
@ -307,6 +307,11 @@ bool nsmng_convert(struct content *c, int width, int height) {
|
|||||||
c->data.mng.opaque_test_pending = (c->type == CONTENT_PNG) || (c->type == CONTENT_JNG);
|
c->data.mng.opaque_test_pending = (c->type == CONTENT_PNG) || (c->type == CONTENT_JNG);
|
||||||
if (c->data.mng.opaque_test_pending)
|
if (c->data.mng.opaque_test_pending)
|
||||||
bitmap_set_opaque(c->bitmap, false);
|
bitmap_set_opaque(c->bitmap, false);
|
||||||
|
|
||||||
|
/* free associated memory except for mngs where it may be subsequently needed for
|
||||||
|
* animation decoding. */
|
||||||
|
if (c->type != CONTENT_MNG)
|
||||||
|
mng_cleanup(&c->data.mng.handle);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -432,7 +437,8 @@ void nsmng_destroy(struct content *c) {
|
|||||||
/* Cleanup the MNG structure and release the canvas memory
|
/* Cleanup the MNG structure and release the canvas memory
|
||||||
*/
|
*/
|
||||||
schedule_remove(nsmng_animate, c);
|
schedule_remove(nsmng_animate, c);
|
||||||
mng_cleanup(&c->data.mng.handle);
|
if (c->type == CONTENT_MNG)
|
||||||
|
mng_cleanup(&c->data.mng.handle);
|
||||||
if (c->bitmap)
|
if (c->bitmap)
|
||||||
bitmap_destroy(c->bitmap);
|
bitmap_destroy(c->bitmap);
|
||||||
free(c->title);
|
free(c->title);
|
||||||
|
Loading…
Reference in New Issue
Block a user