msi: Remove redundant pointer check (Coverity).

This commit is contained in:
Nikolay Sivov 2009-01-25 15:08:58 +03:00 committed by Alexandre Julliard
parent 62b8b9a8fd
commit c3e2cb00d5
1 changed files with 1 additions and 1 deletions

View File

@ -1818,7 +1818,7 @@ static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT num
done:
msiobj_release(&rec->hdr);
if (columns) columns->ops->delete(columns);
columns->ops->delete(columns);
return r;
}