projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7571dbd
)
filter/audiod: Be nice to filters without close method.
author
Andre Noll
<maan@systemlinux.org>
Tue, 12 Jan 2010 06:25:40 +0000
(07:25 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Tue, 12 Jan 2010 06:25:40 +0000
(07:25 +0100)
audiod.c
patch
|
blob
|
history
filter.c
patch
|
blob
|
history
diff --git
a/audiod.c
b/audiod.c
index
9bb40e0
..
128f7b4
100644
(file)
--- a/
audiod.c
+++ b/
audiod.c
@@
-381,7
+381,8
@@
static void close_filters(struct slot_info *s)
if (!fn)
continue;
f = filters + fn->filter_num;
- f->close(fn);
+ if (f->close)
+ f->close(fn);
btr_free_node(fn->btrn);
}
free(s->fns);
diff --git
a/filter.c
b/filter.c
index
bf428b3
..
08398d5
100644
(file)
--- a/
filter.c
+++ b/
filter.c
@@
-155,7
+155,8
@@
out_cleanup:
struct filter_node *fn = fns[i];
f = filters + fn->filter_num;
- f->close(fn);
+ if (f->close)
+ f->close(fn);
btr_free_node(fn->btrn);
free(fn->conf);
free(fn);