aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2014-11-19 23:50:50 +0100
committerThomas White <taw@bitwiz.org.uk>2014-11-19 23:50:50 +0100
commit6578d94fb7e1713eb5176bd4bbbb468576c4f1b3 (patch)
treef8600ade0f2f4fe5e158db010f70832bbe38b10f /src
parentd41bce78be25d4490288974748a99474c1eac911 (diff)
Free old wrap lines
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index 9b3ab06..f7f0e83 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -85,7 +85,7 @@ void renew_frame(struct frame *fr)
if ( fr == NULL ) return;
for ( i=0; i<fr->n_lines; i++ ) {
- // wrap_line_free(&fr->lines[i]);
+ wrap_line_free(&fr->lines[i]);
}
free(fr->lines);
fr->lines = NULL;