Ticket #502 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

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

Changed 3 years ago by lennart

  • status changed from new to closed
  • resolution set to fixed

Fixed by c08317772b9478039b2837f4fe02f9dda4231241.

Note: See TracTickets for help on using tickets.