aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.c b/parse.c
index 83693e8c..557046b2 100644
--- a/parse.c
+++ b/parse.c
@@ -128,8 +128,8 @@ int parse_file(FILE* f, vcalendar* cal) {
strbuf_copy(&cline.val, &str);
*strbuf_cur(&cline.val) = 0;
}
- strbuf_free(&str);
- content_line_free(&cline);
+ FREE(strbuf)(&str);
+ FREE(content_line)(&cline);
return 0;
}