Commit 3c1ca4e5 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msi: Use boolean return value in boolean function.

parent f4323428
...@@ -378,7 +378,7 @@ BOOL WINAPI MsiRecordIsNull( MSIHANDLE handle, UINT iField ) ...@@ -378,7 +378,7 @@ BOOL WINAPI MsiRecordIsNull( MSIHANDLE handle, UINT iField )
rec = msihandle2msiinfo( handle, MSIHANDLETYPE_RECORD ); rec = msihandle2msiinfo( handle, MSIHANDLETYPE_RECORD );
if( !rec ) if( !rec )
return 0; return FALSE;
msiobj_lock( &rec->hdr ); msiobj_lock( &rec->hdr );
ret = MSI_RecordIsNull( rec, iField ); ret = MSI_RecordIsNull( rec, iField );
msiobj_unlock( &rec->hdr ); msiobj_unlock( &rec->hdr );
......
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