[Bug 6472] Unhandled page fault on read access with a clarion app

Wine Bugs wine-bugs at winehq.org
Sat Oct 21 08:00:41 CDT 2006


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





------- Additional Comments From developers at tefnet.pl  2006-21-10 08:00 -------
Found the reason.

GlobalGetAtomNameA() behaves a bit different than in windows.

I changed:
        if (len >= count)
        {
            len = 0;
            SetLastError( ERROR_MORE_DATA );
        }
in wine code to:
        if (len >= count)
        {
                return c;
        }

and programs work ok :).

Further investigation is needed to determine the exact way it should work.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list