summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-07-15 18:05:28 +0000
committerJames Bursa <james@netsurf-browser.org>2003-07-15 18:05:28 +0000
commit9fec06838d4efc51ac2a2e69ae16ac34e4125ca0 (patch)
tree42e1ae260416de49485532a1a93b03c59e21a1e5 /content
parent5911578eaf4f8944ca13dc7bce90d3ed7ab35237 (diff)
downloadnetsurf-9fec06838d4efc51ac2a2e69ae16ac34e4125ca0.tar.gz
netsurf-9fec06838d4efc51ac2a2e69ae16ac34e4125ca0.tar.bz2
[project @ 2003-07-15 18:05:28 by bursa]
Implement other_destroy(). svn path=/import/netsurf/; revision=219
Diffstat (limited to 'content')
-rw-r--r--content/other.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/other.c b/content/other.c
index 638cedcd3..0c1475148 100644
--- a/content/other.c
+++ b/content/other.c
@@ -49,5 +49,5 @@ void other_reformat(struct content *c, unsigned int width, unsigned int height)
void other_destroy(struct content *c)
{
- assert(0);
+ free(c->data.other.data);
}