support: return NULL instead of FALSE

This commit is contained in:
Wim Taymans 2026-01-03 22:54:25 +01:00
parent c99d38443e
commit d25b88925a

View file

@ -445,7 +445,7 @@ impl_get_connection(void *object,
conn = calloc(1, sizeof(struct connection));
if (conn == NULL)
return FALSE;
return NULL;
conn->this = impl_connection;
conn->impl = impl;
conn->type = type;