mirror of
https://github.com/systemd/systemd.git
synced 2025-01-11 09:18:07 +03:00
terminal: sysview: don't return uninitialized error codes
In case 'scan_evdev' and 'scan_drm' are both false, we never set 'r' to anyhting, thus return an uninitialized error code. Fix this by always returning 0 as we catch negative codes earlier, anyway. Thanks to Thomas H.P. Anderson for the report.
This commit is contained in:
parent
0f99f74a14
commit
371ad55d46
@ -821,7 +821,7 @@ static int context_ud_prepare_monitor(sysview_context *c, struct udev_monitor *m
|
||||
return r;
|
||||
}
|
||||
|
||||
return r;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int context_ud_prepare_scan(sysview_context *c, struct udev_enumerate *e) {
|
||||
|
Loading…
Reference in New Issue
Block a user