diff options
Diffstat (limited to 'src/libsystemd-bus/bus-error.c')
-rw-r--r-- | src/libsystemd-bus/bus-error.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsystemd-bus/bus-error.c b/src/libsystemd-bus/bus-error.c index 4f18629758..25eaf0eee4 100644 --- a/src/libsystemd-bus/bus-error.c +++ b/src/libsystemd-bus/bus-error.c @@ -39,7 +39,8 @@ static int bus_error_name_to_errno(const char *name) { const char *p; int r; - assert_return(name, EINVAL); + if (!name) + return EINVAL; p = startswith(name, "System.Error."); if (p) { |