From: Mikel Astiz <mikel.astiz@xxxxxxxxxxxx> 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