diff options
author | 2021-02-17 07:08:15 +0000 | |
---|---|---|
committer | 2021-02-17 07:08:15 +0000 | |
commit | 9d17d79786bc2bd71c90602337753a1f8ff08a01 (patch) | |
tree | 4ad0afe4f93665df7d5a127440d9920c43ae5dfd | |
parent | Make sure puttygen is new enough to successfully run the PuTTY interop (diff) | |
download | wireguard-openbsd-9d17d79786bc2bd71c90602337753a1f8ff08a01.tar.xz wireguard-openbsd-9d17d79786bc2bd71c90602337753a1f8ff08a01.zip |
Collect return code of video_stop() for ioctls calls.
Spotted and ok anton@
-rw-r--r-- | sys/dev/video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/video.c b/sys/dev/video.c index 73b9ee6fbb7..b6bde915f57 100644 --- a/sys/dev/video.c +++ b/sys/dev/video.c @@ -1,4 +1,4 @@ -/* $OpenBSD: video.c,v 1.50 2021/02/16 19:36:03 mglocker Exp $ */ +/* $OpenBSD: video.c,v 1.51 2021/02/17 07:08:15 mglocker Exp $ */ /* * Copyright (c) 2008 Robert Nagy <robert@openbsd.org> @@ -369,7 +369,7 @@ videoioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct proc *p) (int)*data); if (!error) { /* Release device ownership and streaming buffers. */ - video_stop(sc); + error = video_stop(sc); } break; case VIDIOC_TRY_FMT: |