mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-04-01 07:15:39 -04:00
support: return NULL instead of FALSE
This commit is contained in:
parent
c99d38443e
commit
d25b88925a
1 changed files with 1 additions and 1 deletions
|
|
@ -445,7 +445,7 @@ impl_get_connection(void *object,
|
||||||
|
|
||||||
conn = calloc(1, sizeof(struct connection));
|
conn = calloc(1, sizeof(struct connection));
|
||||||
if (conn == NULL)
|
if (conn == NULL)
|
||||||
return FALSE;
|
return NULL;
|
||||||
conn->this = impl_connection;
|
conn->this = impl_connection;
|
||||||
conn->impl = impl;
|
conn->impl = impl;
|
||||||
conn->type = type;
|
conn->type = type;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue