Alex wrote:
It all looks very promising until it patches itself up to version 1.2.3, when it just crashes at startup.
Does this patch help?
Index: dlls/ntdll/nt.c =================================================================== RCS file: /home/wine/wine/dlls/ntdll/nt.c,v retrieving revision 1.72 diff -u -r1.72 nt.c --- dlls/ntdll/nt.c 11 Feb 2005 11:52:07 -0000 1.72 +++ dlls/ntdll/nt.c 18 Feb 2005 22:16:28 -0000 @@ -520,9 +520,12 @@ OUT PLARGE_INTEGER Frequency) { LARGE_INTEGER time; + + if (!Counter) return STATUS_ACCESS_VIOLATION; NtQuerySystemTime( &time ); Counter->QuadPart = time.QuadPart; - Frequency->QuadPart = 10000000; + if (Frequency) + Frequency->QuadPart = 10000000; return 0; }
__________________________________ Do you Yahoo!? The all-new My Yahoo! - What will yours do? http://my.yahoo.com
On Fri, Feb 18, 2005 at 02:21:27PM -0800, Juan Lang wrote:
Alex wrote:
It all looks very promising until it patches itself up to version 1.2.3, when it just crashes at startup.
Does this patch help?
Yes, that fixes it up nicely, thank you. I'm off to see just how far I can get now, I guess. Thanks again :)