From 2b3cc3af64d5574473c2f1ea9c32d7589abbb811 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 1 Mar 2009 21:54:24 +0100 Subject: [PATCH] fecdec: Minor cleanups. --- fecdec_filter.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/fecdec_filter.c b/fecdec_filter.c index 6aa9071e..5c01a039 100644 --- a/fecdec_filter.c +++ b/fecdec_filter.c @@ -175,14 +175,13 @@ static int get_group(struct fec_header *h, struct private_fecdec_data *pfd, /* group not found */ fg = find_unused_group(pfd); if (fg) - goto update_header; + goto success; fg = try_to_free_group(pfd); if (fg) - goto update_header; + goto success; fg = free_oldest_group(pfd); -update_header: - fg->h = *h; success: + fg->h = *h; *result = fg; return 1; } @@ -281,7 +280,6 @@ static int dispatch_slice(char *buf, size_t len, struct fec_header *h, h->slice_num); return 1; } - fg->h = *h; ret = add_slice(buf, fg); if (ret < 0) return ret; -- 2.39.2