Changeset 240 for trunk/src/helpers/dosh2.c
- Timestamp:
- Jan 12, 2003, 11:49:24 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dosh2.c
r238 r240 383 383 } 384 384 385 return (ERROR_BUFFER_OVERFLOW);385 return ERROR_BUFFER_OVERFLOW; 386 386 } 387 387 … … 607 607 { 608 608 // 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)) 611 611 { 612 612 ULONG ul;
Note:
See TracChangeset
for help on using the changeset viewer.