Changeset 1832


Ignore:
Timestamp:
Mar 13, 2005, 11:51:30 AM (20 years ago)
Author:
bird
Message:

Fixed incorrect DosVerifyPidTid call. (mixed tid and pid)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/process/fmutex.c

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r1831 r1832  
    141141            if (!Owner)
    142142                break;
    143             rc = DosVerifyPidTid(Owner & 0xffff, Owner >> 16);
     143            rc = DosVerifyPidTid(Owner >> 16, Owner & 0xffff);
    144144            if (rc)
    145145            {
     
    234234            if (!Owner)
    235235                break;
    236             rc = DosVerifyPidTid(Owner & 0xffff, Owner >> 16);
     236            rc = DosVerifyPidTid(Owner >> 16, Owner & 0xffff);
    237237            if (rc)
    238238            {
Note: See TracChangeset for help on using the changeset viewer.