[Bug 13248] Incomedia Website X5: crashes when install

wine-bugs at winehq.org wine-bugs at winehq.org
Sun May 25 05:54:22 CDT 2008


http://bugs.winehq.org/show_bug.cgi?id=13248


Louis Lenders <xerox_xerox2000 at yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xerox_xerox2000 at yahoo.co.uk
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |download, Installer




--- Comment #2 from Louis Lenders <xerox_xerox2000 at yahoo.co.uk>  2008-05-25 05:54:21 ---
>C:\windows\temp\WZSE0.TMP\CPWCTL32.OCX

>-???-
>Error: 3


That is because the app apparently needs mfc40.dll (and lateron mfc42)
Antonio, try following command:
'wget http://kegel.com/wine/winetricks && sh winetricks mfc40 mfc42'
then report back please


The demo runs into another bug: a bunch of error messageboxes pops up that
files already exist. Does the retail version behave the same? I suspect a bug
in kernel32, as it appeared in the debuglog just before the  trouble, and the
hack below made the installer finish just fine. I can at least confirm the
installer has problems


diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c
index aad260f..95c389c 100644
--- a/dlls/kernel32/path.c
+++ b/dlls/kernel32/path.c
@@ -1060,7 +1060,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source,
LPCWSTR dest,
         NtClose( dest_handle );
         if (!(flag & MOVEFILE_REPLACE_EXISTING))
         {
-            SetLastError( ERROR_ALREADY_EXISTS );
+            SetLastError(0);// ERROR_ALREADY_EXISTS );
             RtlFreeUnicodeString( &nt_name );
             goto error;
         }


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list