Ignore:
Timestamp:
Jan 12, 2003, 11:49:24 AM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dosh.c

    r238 r240  
    16571657       )
    16581658    {
    1659         CHAR szTemp[30] = "?:\\long.name.file";
     1659        CHAR szTemp[] = "?:\\long.name.file";
    16601660        szTemp[0]  = ulLogicalDrive + 'A' - 1;
    16611661        if (!(arc = DosOpen(szTemp,
     
    40144014 +      PDOSHPERFSYS pPerf = NULL;
    40154015 +      APIRET arc;
    4016  +      if (!(arc = arc = doshPerfOpen(&pPerf)))
     4016 +      if (!(arc = doshPerfOpen(&pPerf)))
    40174017 +      {
    40184018 +          // this should really be in a timer,
     
    40434043
    40444044    // allocate DOSHPERFSYS structure
    4045     *ppPerfSys = (PDOSHPERFSYS)malloc(sizeof(DOSHPERFSYS));
    4046     if (!*ppPerfSys)
     4045    if (!(*ppPerfSys = (PDOSHPERFSYS)malloc(sizeof(DOSHPERFSYS))))
    40474046        arc = ERROR_NOT_ENOUGH_MEMORY;
    40484047    else
Note: See TracChangeset for help on using the changeset viewer.