[pulseaudio-discuss] [PATCH v0] card: Set initial profile availability state

Mikel Astiz mikel.astiz.oss at gmail.com
Tue Feb 19 09:26:03 PST 2013


From: Mikel Astiz <mikel.astiz at bmw-carit.de>

Commit afd33da56a0b174c43ca44bce21b8ef0efaca1fa introduces this new
flag but the default initial value is missing, considering that
pa_xmalloc is used to allocate the memory.
---
 src/pulsecore/card.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c
index 9dc7c6c..7cf45df 100644
--- a/src/pulsecore/card.c
+++ b/src/pulsecore/card.c
@@ -51,6 +51,7 @@ pa_card_profile *pa_card_profile_new(const char *name, const char *description,
     c->priority = 0;
     c->n_sinks = c->n_sources = 0;
     c->max_sink_channels = c->max_source_channels = 0;
+    c->available = PA_AVAILABLE_UNKNOWN;
 
     return c;
 }
-- 
1.8.1



More information about the pulseaudio-discuss mailing list