bfdd: Prevent coverity from thinking values are uninited

Coverity is claiming that bfdd is able got have bglobal.bg_use_dplane
can be true, while dplane_addr can be uninitialized.  Not really
possible since global variables are initialized to all 0's.  In
any event.  Force it to think it can't go there.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2022-05-12 16:58:29 -04:00
parent d87c526b1b
commit e51c0f771d
1 changed files with 2 additions and 0 deletions

View File

@ -337,6 +337,8 @@ int main(int argc, char *argv[])
bool ctlsockused = false;
int opt;
bglobal.bg_use_dplane = false;
/* Initialize system sockets. */
bg_init();