msi: Check the return value of MSI_QueryGetRecord (Coverity).

This commit is contained in:
Hans Leidekker 2015-07-15 15:13:11 +02:00 committed by Alexandre Julliard
parent e94d977006
commit 17405f6b91
1 changed files with 3 additions and 1 deletions

View File

@ -3554,7 +3554,9 @@ static UINT ACTION_ProcessComponents(MSIPACKAGE *package)
if (!comp->KeyPath || !(file = msi_get_loaded_file(package, comp->KeyPath)))
continue;
row = MSI_QueryGetRecord(package->db, query, file->Sequence);
if (!(row = MSI_QueryGetRecord(package->db, query, file->Sequence)))
return ERROR_FUNCTION_FAILED;
sprintfW(source, fmt, MSI_RecordGetInteger(row, 1));
ptr2 = strrchrW(source, '\\') + 1;
msiobj_release(&row->hdr);