Changeset 370 for trunk/dll/grep.c
- Timestamp:
- Jul 27, 2006, 4:21:21 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/grep.c
r350 r370 16 16 24 Oct 05 SHL dononefile: do not free EA list twice 17 17 22 Jul 06 SHL Use Runtime_Error 18 26 Jul 06 SHL Check more run time errors 18 19 19 20 ***********************************************************************/ … … 1189 1190 GetPString(IDS_GREPDUPESORTINGTEXT)); 1190 1191 DosSleep(1L); 1191 g->dupenames = malloc(sizeof(DUPES *) * (x + 1));1192 g->dupenames = xmalloc(sizeof(DUPES *) * (x + 1), pszSrcFile, __LINE__); 1192 1193 if (!g->nosizedupes) 1193 g->dupesizes = malloc(sizeof(DUPES *) * (x + 1));1194 g->dupesizes = xmalloc(sizeof(DUPES *) * (x + 1), pszSrcFile, __LINE__); 1194 1195 if (g->dupenames && (g->nosizedupes || g->dupesizes)) { 1195 1196 i = g->dupehead;
Note:
See TracChangeset
for help on using the changeset viewer.