Getting the string for a null field should not create an error. Add a

missing break.
This commit is contained in:
Aric Stewart 2004-08-24 20:56:08 +00:00 committed by Alexandre Julliard
parent 2e360b3ee4
commit 47c94c0e4d
1 changed files with 1 additions and 0 deletions

View File

@ -294,6 +294,7 @@ UINT MSI_RecordGetStringA(MSIRECORD *rec, unsigned int iField,
len = 1;
if( *pcchValue > 0 )
szValue[0] = 0;
break;
default:
ret = ERROR_INVALID_PARAMETER;
break;