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, May 28, 6:28 PM
Unknown Object (File)
Tue, May 20, 11:06 AM
Unknown Object (File)
Tue, May 13, 2:12 PM
Unknown Object (File)
Tue, May 13, 8:08 AM
Unknown Object (File)
Thu, May 8, 11:48 PM
Unknown Object (File)
Apr 29 2025, 1:58 PM
Unknown Object (File)
Apr 24 2025, 10:13 PM
Unknown Object (File)
Apr 22 2025, 4:15 AM

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