Commit 47c94c0e authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

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

missing break.
parent 2e360b3e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment