Custom Query (80 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 80)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#29 fixed WINXP version to SP3 abwillis
Description

There was some chatter on OS2World about updating the reported version of WinXP in Odin to SP3. I have run into an app that wanted that as well, though so far increasing the version only got rid of the message that I needed SP3 and did not fix the problem or I would just commit the change.

Index: version.cpp =================================================================== --- version.cpp (revision 21552) +++ version.cpp (working copy) @@ -88,14 +88,14 @@

2, 0, 0, 0

}

},

  • Windows XP

+ Windows XP (SP3)

{

0x05005F03, /* Assuming DOS 5 like the other NT */ 0x0A280105, {

sizeof(OSVERSIONINFOA), 5, 1, 0xA28,

  • VER_PLATFORM_WIN32_NT, "",
  • 0, 0, 0, 0

+ VER_PLATFORM_WIN32_NT, "Service Pack 3", + 3, 0, 0, 0

}

}

};

#30 fixed Please add OdinApp install to Odin installation section of readme. madodel
Description

This is a carry over from testing flash 10. I was unable to start Firefox after installing Flash 10. Kept getting a SYS3171 in ODINCRT.DLL. This was on a new install of eCS 2.0GA with the latest Odin releases.

Anyway as a point of information, my Firefox startup problem was fixed by installing the OdinApp?. ftp://ftp.netlabs.org/pub/odin/Daily/odinapp.zip You might want to add that to the Odin docs as I don't see it already there.

Thanks for all your work.

Mark

#31 fixed DosQueryModuleHandleStrict() loops forever and drains stack dmik
Description

Due to bugs in the DosQuerySysState? API, the returned buffer seems to contain circular references under some (quite random) conditions. This makes the walkModules() worker (used by DosQueryModuleHandleStrict?()) recurse into itself until it eats up all the stack.

From the user perspective, this looks like an application giving 100% CPU load for some tens seconds and then crashing with SYS1808.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.