Ticket #502 (closed defect: fixed)
module-combine.c: incorrect use of the pa_assert() macro
| Reported by: | rantala | Owned by: | lennart |
|---|---|---|---|
| Milestone: | 0.9.15 | Component: | module-combine-* |
| Keywords: | Cc: |
Description
The following use of pa_assert() should probably be replaced with pa_assert_se():
http://www.pulseaudio.org/browser/src/modules/module-combine.c#L490
485 /* Called from main context */
486 static void sink_input_kill_cb(pa_sink_input *i) {
487 struct output *o;
488
489 pa_sink_input_assert_ref(i);
490 pa_assert(o = i->userdata);
491
492 pa_module_unload_request(o->userdata->module, TRUE);
493 output_free(o);
494 }
Change History
Note: See
TracTickets for help on using
tickets.
