Page MenuHomeFreeBSD

bhyvectl: send_message() returns garbage
ClosedPublic

Authored by gusev.vitaliy_gmail.com on Mar 3 2023, 11:37 AM.
Tags
Referenced Files
Unknown Object (File)
Wed, Sep 18, 5:38 PM
Unknown Object (File)
Tue, Sep 17, 6:17 PM
Unknown Object (File)
Tue, Sep 17, 3:28 AM
Unknown Object (File)
Mon, Sep 16, 8:49 PM
Unknown Object (File)
Aug 7 2024, 8:18 AM
Unknown Object (File)
Aug 3 2024, 3:32 AM
Unknown Object (File)
Jul 28 2024, 8:59 AM
Unknown Object (File)
Jul 26 2024, 10:12 PM

Details

Summary

Variable 'err' is used uninitialized in some cases and returned
as result of function.

Sponsored by: vStack

Test Plan

Compile bhyvectl, run 'bhyvectl --suspend', verify send_message() returns 0 on success.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

usr.sbin/bhyvectl/bhyvectl.c
1693

When connect() fails, this function returns errno, but here it returns -1. Shouldn't it be consistent?

1710

Shouldn't we set err here?

gusev.vitaliy_gmail.com added inline comments.
usr.sbin/bhyvectl/bhyvectl.c
1693

Done.

1710

Done.

This revision is now accepted and ready to land.Mar 3 2023, 2:58 PM