From ab787f9d892ff04811d71e4d04a2c80d12c882d6 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Sat, 29 Oct 2005 11:07:11 +0000 Subject: [PATCH] Remove an incorrect comment and check for 0 being an invalid file handle. --- dlls/msi/files.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/msi/files.c b/dlls/msi/files.c index 471294da5c..6e162b8737 100644 --- a/dlls/msi/files.c +++ b/dlls/msi/files.c @@ -240,13 +240,6 @@ static INT_PTR cabinet_notify(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION pfdin) return 0; } - /* - * FIXME: 0 is a valid return from CreateFile - * but an invalid handle for the cabinet API - */ - if ( !handle ) - ERR("CreateFile returned 0 - not handled\n"); - f->State = 4; return (INT_PTR) handle; } -- 2.32.0.93.g670b81a890