Ignore:
Timestamp:
Aug 14, 2009, 5:18:10 PM (16 years ago)
Author:
vladest
Message:
  1. Attempt to add support for DosAllocMem at specific address
  2. Fixed crashes in Handle manager when its tries to access non initialized pointer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/oslibdos.cpp

    r21336 r21339  
    13321332  // PH Note: for a negative 32-bit seek, the OS/2 64-bit version
    13331333  // needs to be skipped.
    1334   if( (f64BitIO) && (OffsetHigh) &&
     1334#if 0 /* doesnt works at all with flash 10 */
     1335  if( (f64BitIO) && (OffsetHigh) && ((DWORD)OffsetHigh != 0xAAAAAAAA) &&
    13351336     (*OffsetHigh != 0xAAAAAAAA) &&
    13361337     (*OffsetHigh != 0)) //workaround for flash10 video
     
    13451346  }
    13461347  else
     1348#endif
    13471349      rc = DosSetFilePtr(hFile, OffsetLow, method, &newoffset);
    13481350
Note: See TracChangeset for help on using the changeset viewer.