mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
Initialise variables
These were detected using clang static analyzer.
This commit is contained in:
parent
3b76d8065f
commit
92219b01b9
5 changed files with 9 additions and 6 deletions
|
|
@ -916,7 +916,7 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *us
|
|||
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
|
||||
} else if (dbus_message_is_signal(m, "org.bluez.MediaTransport", "PropertyChanged")) {
|
||||
pa_bluetooth_device *d;
|
||||
pa_bluetooth_transport *t;
|
||||
pa_bluetooth_transport *t = NULL;
|
||||
void *state = NULL;
|
||||
DBusMessageIter arg_i;
|
||||
|
||||
|
|
@ -1112,7 +1112,7 @@ static DBusMessage *endpoint_set_configuration(DBusConnection *conn, DBusMessage
|
|||
const char *path, *dev_path = NULL, *uuid = NULL;
|
||||
uint8_t *config = NULL;
|
||||
int size = 0;
|
||||
pa_bool_t nrec;
|
||||
pa_bool_t nrec = FALSE;
|
||||
enum profile p;
|
||||
DBusMessageIter args, props;
|
||||
DBusMessage *r;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue