Corrected ReadPropertyMultiple handler. Tested using VTS with demo/server running under linux.

This commit is contained in:
skarg
2007-07-19 18:27:03 +00:00
parent 032a78bb2a
commit 30c186d730
14 changed files with 157 additions and 86 deletions
+3 -3
View File
@@ -87,11 +87,11 @@ void Analog_Value_Property_Lists(
const int **pOptional,
const int **pProprietary)
{
if (*pRequired)
if (pRequired)
*pRequired = Analog_Value_Properties_Required;
if (*pOptional)
if (pOptional)
*pOptional = Analog_Value_Properties_Optional;
if (*pProprietary)
if (pProprietary)
*pProprietary = Analog_Value_Properties_Proprietary;
return;