msi: Remove redundant pointer check (Coverity).
This commit is contained in:
parent
62b8b9a8fd
commit
c3e2cb00d5
|
@ -1818,7 +1818,7 @@ static UINT TABLE_remove_column(struct tagMSIVIEW *view, LPCWSTR table, UINT num
|
||||||
|
|
||||||
done:
|
done:
|
||||||
msiobj_release(&rec->hdr);
|
msiobj_release(&rec->hdr);
|
||||||
if (columns) columns->ops->delete(columns);
|
columns->ops->delete(columns);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue