Module: wine Branch: master Commit: c3e2cb00d5b06752df2b4a591c0de5405be21a85 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c3e2cb00d5b06752df2b4a591c...
Author: Nikolay Sivov bunglehead@gmail.com Date: Sun Jan 25 15:08:58 2009 +0300
msi: Remove redundant pointer check (Coverity).
---
dlls/msi/table.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/table.c b/dlls/msi/table.c index 7cd1c71..e9c2196 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -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; }