Warning C6102 - VS2013

799 Views Asked by At

Visual Studio 2013 offers an interesting static code analysis. Here's a warning I get that I can't get rid of:

C6102     Using 'Attributes' from failed function call at line '1031'

'Attributes' is not initialized           1031
 Skip this branch, (assume '<branch condition>' is false)         1031
'Attributes' is used, but may not have been initialized           1037.

The code is simple:

BOOL    GetDeviceVersionNumber(int Index, PUSHORT version)
{
/*
This function returns TRUE is it succeeds
and puts Version number in VersionNumber
*/
HANDLE h = GetHandleByIndex(Index);
if (!h || h==INVALID_HANDLE_VALUE)
    return FALSE;

HIDD_ATTRIBUTES Attributes;
if (!HidD_GetAttributes(h, &Attributes))
{
    CloseHandle(h);
    return FALSE;
};

*version = Attributes.VersionNumber;
CloseHandle(h);

return TRUE;
}

Now, Attributes is not a pointer, it is a struct. I did try to initialize it but this does not help.

Any idea? Tx

1

There are 1 best solutions below

1
On

The first member of HIDD_ATTRIBUTES is size , that needs to be set to
sizeof(HIDD_ATTRIBUTES) before its used in any calls, Windows uses it to
figure out the version you are using.