[pulseaudio-commits] Branch 'next' - src/pulsecore
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Thu Apr 25 06:56:07 PDT 2013
src/pulsecore/module.c | 1 +
1 file changed, 1 insertion(+)
New commits:
commit fd22c1a7f14a844f07ba00eda36581b5a4d41ffd
Author: Ismo Puustinen <ismo.puustinen at intel.com>
Date: Fri Apr 12 17:38:12 2013 +0300
module: initialize module index to invalid value.
m->init() was called while m->index was uninitialized, which was bad
style.
diff --git a/src/pulsecore/module.c b/src/pulsecore/module.c
index 268d85d..6f276bb 100644
--- a/src/pulsecore/module.c
+++ b/src/pulsecore/module.c
@@ -64,6 +64,7 @@ pa_module* pa_module_load(pa_core *c, const char *name, const char *argument) {
m->argument = pa_xstrdup(argument);
m->load_once = FALSE;
m->proplist = pa_proplist_new();
+ m->index = PA_IDXSET_INVALID;
if (!(m->dl = lt_dlopenext(name))) {
/* We used to print the error that is returned by lt_dlerror(), but
More information about the pulseaudio-commits
mailing list