From ca4b17efe800bb4f06392aa55a6d8f4d2efccd47 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 18 Aug 2008 23:01:00 -0500 Subject: [PATCH] msi: Don't check for a NULL component, as the component is guaranteed to exist. --- dlls/msi/files.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/msi/files.c b/dlls/msi/files.c index 08e8ec8a09..32334cdb31 100644 --- a/dlls/msi/files.c +++ b/dlls/msi/files.c @@ -444,8 +444,6 @@ UINT ACTION_RemoveFiles( MSIPACKAGE *package ) MSIRECORD *uirow; LPWSTR uipath, p; - if ( !file->Component ) - continue; if ( file->Component->Installed == INSTALLSTATE_LOCAL ) continue; -- 2.32.0.93.g670b81a890