Changeset 2290 in kBuild for trunk/src/kash/shfile.c
- Timestamp:
- Feb 27, 2009 4:08:07 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/shfile.c
r2289 r2290 150 150 while (new_size < fdMin) 151 151 new_size += SHFILE_GROW; 152 new_tab = realloc(pfdtab->tab, new_size * sizeof(shfile));152 new_tab = sh_realloc(NULL, pfdtab->tab, new_size * sizeof(shfile)); 153 153 if (new_tab) 154 154 { … … 230 230 } 231 231 232 233 232 /** 234 233 * Constructs a path from the current directory and the passed in path. … … 257 256 #if K_OS == K_OS_WINDOWS || K_OS == K_OS_OS2 258 257 || *path == '\\' 259 || ( !*path258 || ( *path 260 259 && path[1] == ':' 261 260 && ( (*path >= 'A' && *path <= 'Z') … … 1050 1049 } 1051 1050 1051 void shfile_set_umask(shfdtab *pfdtab, mode_t mask) 1052 { 1053 (void)mask; 1054 } 1055 1052 1056 1053 1057 shdir *shfile_opendir(shfdtab *pfdtab, const char *dir)
Note:
See TracChangeset
for help on using the changeset viewer.