mirror of
https://github.com/systemd/systemd.git
synced 2025-01-30 01:47:42 +03:00
dbus: fix capability serialization
This commit is contained in:
parent
449648c430
commit
674cdd1933
@ -209,11 +209,13 @@ int bus_execute_append_capabilities(Manager *m, DBusMessageIter *i, const char *
|
||||
else
|
||||
s = "";
|
||||
|
||||
if (!t)
|
||||
if (!s)
|
||||
return -ENOMEM;
|
||||
|
||||
b = dbus_message_iter_append_basic(i, DBUS_TYPE_STRING, &s);
|
||||
cap_free(t);
|
||||
|
||||
if (t)
|
||||
cap_free(t);
|
||||
|
||||
if (!b)
|
||||
return -ENOMEM;
|
||||
|
@ -127,7 +127,7 @@
|
||||
{ interface, "SyslogPriority", bus_property_append_int, "i", &(context).syslog_priority }, \
|
||||
{ interface, "SyslogIdentifier", bus_property_append_string, "s", (context).syslog_identifier }, \
|
||||
{ interface, "SyslogLevelPrefix", bus_property_append_bool, "b", &(context).syslog_level_prefix }, \
|
||||
{ interface, "Capabilities", bus_execute_append_capabilities, "s", (context).capabilities }, \
|
||||
{ interface, "Capabilities", bus_execute_append_capabilities, "s",&(context) }, \
|
||||
{ interface, "SecureBits", bus_property_append_int, "i", &(context).secure_bits }, \
|
||||
{ interface, "CapabilityBoundingSetDrop", bus_property_append_uint64, "t", &(context).capability_bounding_set_drop }, \
|
||||
{ interface, "User", bus_property_append_string, "s", (context).user }, \
|
||||
|
Loading…
x
Reference in New Issue
Block a user