diff options
author | Vitaly Kuznetsov <vkuznets@redhat.com> | 2018-09-17 04:14:55 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-10 08:54:28 +0200 |
commit | 4de0fb95a2875252ab023f63c44762c7219b6da6 (patch) | |
tree | bf9868a3d7cc644580265d9d3226c486f7544f04 /tools/hv/hv_fcopy_daemon.c | |
parent | 1d24e2609002ccab8e00bb23dbd3abc94566091f (diff) | |
download | linux-rt-4de0fb95a2875252ab023f63c44762c7219b6da6.tar.gz |
tools: hv: fcopy: set 'error' in case an unknown operation was requested
commit c2d68afba86d1ff01e7300c68bc16a9234dcd8e9 upstream.
'error' variable is left uninitialized in case we see an unknown operation.
As we don't immediately return and proceed to pwrite() we need to set it
to something, HV_E_FAIL sounds good enough.
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/hv/hv_fcopy_daemon.c')
-rw-r--r-- | tools/hv/hv_fcopy_daemon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c index 785f4e95148c..7a1039c15e7d 100644 --- a/tools/hv/hv_fcopy_daemon.c +++ b/tools/hv/hv_fcopy_daemon.c @@ -233,6 +233,7 @@ int main(int argc, char *argv[]) break; default: + error = HV_E_FAIL; syslog(LOG_ERR, "Unknown operation: %d", buffer.hdr.operation); |