Commit abdecfbe authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

msi: Only call MSI_RecordGetString() when needed (Coverity).

parent 23ae6933
......@@ -2595,7 +2595,7 @@ static void dump_record( MSIRECORD *rec )
n = MSI_RecordGetFieldCount( rec );
for( i=1; i<=n; i++ )
{
LPCWSTR sval = MSI_RecordGetString( rec, i );
LPCWSTR sval;
if( MSI_RecordIsNull( rec, i ) )
TRACE("row -> []\n");
......
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