summaryrefslogtreecommitdiffstats
path: root/stream/realrtsp/rmff.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/realrtsp/rmff.c')
-rw-r--r--stream/realrtsp/rmff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/realrtsp/rmff.c b/stream/realrtsp/rmff.c
index e147b76f36..d538222141 100644
--- a/stream/realrtsp/rmff.c
+++ b/stream/realrtsp/rmff.c
@@ -847,9 +847,9 @@ void rmff_free_header(rmff_header_t *h) {
if (!h) return;
- if (h->fileheader) free(h->fileheader);
- if (h->prop) free(h->prop);
- if (h->data) free(h->data);
+ free(h->fileheader);
+ free(h->prop);
+ free(h->data);
if (h->cont)
{
free(h->cont->title);