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/dosh2.c

    r238 r240  
    383383    }
    384384
    385     return(ERROR_BUFFER_OVERFLOW);
     385    return ERROR_BUFFER_OVERFLOW;
    386386}
    387387
     
    607607    {
    608608        // try additional things then
    609         PSZ psz2 = (PSZ)malloc(strlen(pcszCommand) + 20);
    610         if (psz2)
     609        PSZ psz2;
     610        if (psz2 = (PSZ)malloc(strlen(pcszCommand) + 20))
    611611        {
    612612            ULONG   ul;
Note: See TracChangeset for help on using the changeset viewer.