Changeset b7be230 in mainline
- Timestamp:
- 2009-01-22T17:11:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bffd91f
- Parents:
- bf226890
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cp/cp.c
rbf226890 rb7be230 35 35 #include <string.h> 36 36 #include <fcntl.h> 37 #include <assert.h>38 37 #include "config.h" 39 38 #include "util.h" … … 125 124 res -= bytes; 126 125 } while (res > 0); 127 assert(res == 0); 126 127 /* TODO: re-insert assert() once this is stand alone, 128 * removed as abort() exits the entire shell 129 */ 130 if (res != 0) { 131 printf("\n%d more bytes than actually exist were copied\n", res); 132 goto err; 133 } 128 134 } 129 135 130 136 if (bytes < 0) { 131 137 err: 132 printf(" Error copying %s, (%d)\n", src, bytes);138 printf("\nError copying %s, (%d)\n", src, bytes); 133 139 copied = bytes; 134 140 } -
uspace/app/bdsh/cmds/modules/rm/rm.c
rbf226890 rb7be230 34 34 #include <fcntl.h> 35 35 #include <dirent.h> 36 #include <assert.h>37 36 #include <getopt.h> 38 37 … … 220 219 len = strlen(argv[i]) + 2; 221 220 buff = (char *) realloc(buff, len); 222 assert(buff != NULL); 221 if (buff == NULL) { 222 printf("rm: out of memory\n"); 223 ret = 1; 224 break; 225 } 223 226 memset(buff, 0, sizeof(buff)); 224 227 snprintf(buff, len, argv[i]);
Note:
See TracChangeset
for help on using the changeset viewer.