Changeset f90eb75 in mainline
- Timestamp:
- 2011-08-21T13:24:21Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5935c079
- Parents:
- b48d046 (diff), 8a6ba94 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/compl.c
rb48d046 rf90eb75 98 98 int retval; 99 99 tokenizer_t tok; 100 token_t tokens[WORD_MAX]; 100 token_t *tokens = calloc(WORD_MAX, sizeof(token_t)); 101 if (tokens == NULL) { 102 retval = ENOMEM; 103 goto error; 104 } 101 105 int current_token; 102 106 size_t tokens_length; … … 254 258 if (cs != NULL) 255 259 free(cs); 260 if (tokens != NULL) 261 free(tokens); 256 262 257 263 return retval;
Note:
See TracChangeset
for help on using the changeset viewer.