if (!s)
return NULL;
- str = (char *) malloc(strlen(s) + 1);
+ str = malloc(strlen(s) + 1);
CHECK(str != NULL);
strcpy(str, s);
return str;
if (!a && !b)
return NULL;
sz = strlen(a) + strlen(b) + 1;
- str = (char *) malloc(sz);
+ str = malloc(sz);
CHECK(str != NULL);
strcpy(str, a);
strcat(str, b);
return cat_strings(a, b + 1);
sz = na + nb + 2;
- str = (char *) malloc(sz);
+ str = malloc(sz);
CHECK(str != NULL);
strcpy(str, a);
strcat(str, "/");
/* Create an array of entries */
sz = sizeof(struct dir_entry_info *);
n = dir->number_of_entries;
- entry_array = (struct dir_entry_info **) malloc(sz * n);
+ entry_array = malloc(sz * n);
CHECK(entry_array != NULL);
entry = dir->first;