[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.13-142-gdcd498c
Lennart Poettering
gitmailer-noreply at 0pointer.de
Wed Dec 17 12:06:53 PST 2008
This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.
The master branch has been updated
from 82f09b6d8ffcb51d3fdc7834762f45d887d44e70 (commit)
- Log -----------------------------------------------------------------
dcd498c... Fix bug walking on module list.
-----------------------------------------------------------------------
Summary of changes:
src/modules/bluetooth/module-bluetooth-discover.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
commit dcd498c5ad86bfdbda6d29e1b48aa8f02dc8ceaa
Author: Luiz Augusto von Dentz <luiz.dentz at openbossa.org>
Date: Fri Dec 5 15:47:37 2008 -0300
Fix bug walking on module list.
diff --git a/src/modules/bluetooth/module-bluetooth-discover.c b/src/modules/bluetooth/module-bluetooth-discover.c
index 36c0a35..ddf944a 100644
--- a/src/modules/bluetooth/module-bluetooth-discover.c
+++ b/src/modules/bluetooth/module-bluetooth-discover.c
@@ -94,7 +94,7 @@ static void module_free(struct module *m) {
static struct module* module_find(struct device *d, const char *profile) {
struct module *m;
- for (m = d->module_list; d; d = d->next)
+ for (m = d->module_list; m; m = m->next)
if (pa_streq(m->profile, profile))
return m;
--
hooks/post-receive
PulseAudio Sound Server
More information about the pulseaudio-commits
mailing list