Skip to content

Commit c2d68af

Browse files
vittyvkgregkh
authored andcommitted
tools: hv: fcopy: set 'error' in case an unknown operation was requested
'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>
1 parent 34bd283 commit c2d68af

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/hv/hv_fcopy_daemon.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ int main(int argc, char *argv[])
234234
break;
235235

236236
default:
237+
error = HV_E_FAIL;
237238
syslog(LOG_ERR, "Unknown operation: %d",
238239
buffer.hdr.operation);
239240

0 commit comments

Comments
 (0)