The buffer sizes in the documentation for MsiDecomposeDescriptorW don't

include the NULL terminator, so fix this.
This commit is contained in:
Robert Shearman 2005-11-30 12:02:06 +01:00 committed by Alexandre Julliard
parent dc5f1cbd5d
commit 2d5dc32f35
1 changed files with 3 additions and 3 deletions

View File

@ -502,9 +502,9 @@ UINT MSIREG_OpenUserUpgradeCodesKey(LPCWSTR szUpgradeCode, HKEY* key, BOOL creat
*
* PARAMS
* szDescriptor [I] the descriptor to decompose
* szProduct [O] buffer of MAX_FEATURE_CHARS for the product guid
* szFeature [O] buffer of MAX_FEATURE_CHARS for the feature code
* szComponent [O] buffer of MAX_FEATURE_CHARS for the component guid
* szProduct [O] buffer of MAX_FEATURE_CHARS+1 for the product guid
* szFeature [O] buffer of MAX_FEATURE_CHARS+1 for the feature code
* szComponent [O] buffer of MAX_FEATURE_CHARS+1 for the component guid
* pUsed [O] the length of the descriptor
*
* RETURNS