Changeset 411
- Timestamp:
- Mar 29, 2012, 11:03:40 PM (13 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/dosh.c
r385 r411 30 30 31 31 /* 32 * This file Copyright (C) 1997-201 0Ulrich Mller.32 * This file Copyright (C) 1997-2012 Ulrich Mller. 33 33 * This file is part of the "XWorkplace helpers" source package. 34 34 * This is free software; you can redistribute it and/or modify … … 3502 3502 *@@changed WarpIN V1.0.15 (2007-03-27) [pr]: allow NULL pulDirs and pulFiles 3503 3503 *@@changed WarpIN V1.0.16 (2007-07-28) [pr]: bump directory count on recursive delete failures @@fixes 1001 3504 *@@changed WarpIN V1.0.20 (2012-03-29) [pr]: path not found no longer an error 3504 3505 */ 3505 3506 … … 3592 3593 3593 3594 if (arcReturn == NO_ERROR) 3595 { 3594 3596 // success so far: 3595 3597 // delete our directory now 3596 3598 arcReturn = DosDeleteDir((PSZ)pcszDir); 3599 if (arcReturn == ERROR_PATH_NOT_FOUND) // WarpIN V1.0.20 (2012-03-29) [pr] 3600 arcReturn = NO_ERROR; 3601 } 3597 3602 3598 3603 return (arcReturn); -
trunk/src/helpers/dosh.c
r385 r411 30 30 31 31 /* 32 * This file Copyright (C) 1997-201 07Ulrich Mller.32 * This file Copyright (C) 1997-2012 Ulrich Mller. 33 33 * This file is part of the "XWorkplace helpers" source package. 34 34 * This is free software; you can redistribute it and/or modify … … 3715 3715 *@@changed WarpIN V1.0.15 (2007-03-27) [pr]: allow NULL pulDirs and pulFiles 3716 3716 *@@changed WarpIN V1.0.16 (2007-07-28) [pr]: bump directory count on recursive delete failures @@fixes 1001 3717 *@@changed WarpIN V1.0.20 (2012-03-29) [pr]: path not found no longer an error 3717 3718 */ 3718 3719 … … 3805 3806 3806 3807 if (arcReturn == NO_ERROR) 3808 { 3807 3809 // success so far: 3808 3810 // delete our directory now 3809 3811 arcReturn = DosDeleteDir((PSZ)pcszDir); 3812 if (arcReturn == ERROR_PATH_NOT_FOUND) // WarpIN V1.0.20 (2012-03-29) [pr] 3813 arcReturn = NO_ERROR; 3814 } 3810 3815 3811 3816 return arcReturn;
Note:
See TracChangeset
for help on using the changeset viewer.