Changeset 39405
- Timestamp:
- Feb 26, 2016, 9:21:19 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/addstar/src/LoadFilenames.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/addstar/src/LoadFilenames.c
r38986 r39405 6 6 glob_t globList; 7 7 AddstarFile *file; 8 char line[4096], word1[4096], word2[4096], sep[4096]; 8 9 char *line, *word1, *word2, *sep; 10 ALLOCATE (line, char, 4096); 11 ALLOCATE (word1, char, 4096); 12 ALLOCATE (word2, char, 4096); 13 ALLOCATE (sep, char, 4096); 9 14 10 15 if (options[0].filelist) { … … 78 83 } 79 84 *nfile = Nfile; 85 86 free (line); 87 free (word1); 88 free (word2); 89 free (sep); 90 80 91 return (file); 81 92 }
Note:
See TracChangeset
for help on using the changeset viewer.
