Commit c3e2cb00 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msi: Remove redundant pointer check (Coverity).

parent 62b8b9a8
......@@ -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;
}
......
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