From c3e2cb00d5b06752df2b4a591c0de5405be21a85 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Sun, 25 Jan 2009 15:08:58 +0300 Subject: [PATCH] msi: Remove redundant pointer check (Coverity). --- dlls/msi/table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/table.c b/dlls/msi/table.c index 7cd1c7107b7..e9c2196c163 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; }