mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 18:50:07 +01:00
libnm-core: fix compile error in set_property_from_dbus() for missing return value
Fixes: 76d9fc9167
This commit is contained in:
parent
f137d495dc
commit
05212419e1
1 changed files with 1 additions and 1 deletions
|
|
@ -665,7 +665,7 @@ set_property_from_dbus (const NMSettingProperty *property,
|
|||
GVariant *src_value,
|
||||
GValue *dst_value)
|
||||
{
|
||||
g_return_if_fail (property->param_spec != NULL);
|
||||
g_return_val_if_fail (property->param_spec != NULL, FALSE);
|
||||
|
||||
if (property->from_dbus) {
|
||||
if (!g_variant_type_equal (g_variant_get_type (src_value), property->dbus_type))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue