Ignore:
Timestamp:
Jun 18, 2017, 9:34:04 PM (8 years ago)
Author:
Valery V. Sedletski
Message:
  • Different exFAT-related additions for CHKDSK
  • Return "unimplemented" on SYSINSTX attempts
  • Attempts to fix traps in malloc() in exFAT CHKDSK code. It appears that heap is corrupted somewhere. Also, added experimental mem_alloc2() function, to allocate memory via a CHKDSK.SYS driver (non-working, yet).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/ufat32/win32.c

    r277 r282  
    323323
    324324    return 1;
     325}
     326
     327int mem_alloc2(void **p, ULONG cb)
     328{
     329    return mem_alloc(p, cb);
    325330}
    326331
Note: See TracChangeset for help on using the changeset viewer.