Changeset 1707


Ignore:
Timestamp:
Feb 8, 2014, 9:14:08 PM (11 years ago)
Author:
Steven Levine
Message:

Support git, svn, hg etc. version control metadata directory excludes

Location:
trunk/dll
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/excputil.c

    r1673 r1707  
    194194    else {
    195195      // DbgMsg(pszSrcFile, __LINE__, "Invoking exceptq handler at %p", pfn);
    196       (*pfn)(pReport,   pReg, pContext, pv);
     196      (*pfn)(pReport, pReg, pContext, pv);
    197197      handled = TRUE;
    198198    }
  • TabularUnified trunk/dll/grep.c

    r1695 r1707  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2001, 2010 Steven H. Levine
     9  Copyright (c) 2001, 2014 Steven H. Levine
    1010
    1111  12 Feb 03 SHL InsertGrepFile: standardize EA math
     
    3434  28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code.
    3535  17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10).
    36                 Mostly cast CHAR CONSTANT * as CHAR *.
     36                Mostly cast CHAR CONSTANT * as CHAR *.
    3737  29 May 10 GKY Suppress ERROR_FILENAME_EXCED_RANGE error because of problem with NTFS
    3838  30 May 11 GKY Fixed potential trap caused by passing a nonexistant pci to FillInRecordFromFFB
    39                 in DoInsertion because pci is limited to 65535 files. (nRecord is a USHORT)
    40                 SHL's single loop fix.
     39                in DoInsertion because pci is limited to 65535 files. (nRecord is a USHORT)
     40                SHL's single loop fix.
    4141  05 Aug 12 GKY Replace SleepIfNeeded with IdleIfNeeded to improve IU response during long searches; it
    42                 will switch between normal and idle priority and back.
     42                will switch between normal and idle priority and back.
    4343  05 Aug 12 GKY Always sort "Find Dups" by filename in the collector.
     44  08 Feb 14 SHL Support Ignore SVN option
    4445
    4546***********************************************************************/
     
    8182
    8283static VOID DoAllSubdirs(GREP *grep,
    83                         CHAR *searchPath,
    84                         BOOL recursing,
    85                          char **fle,
    86                          UINT numfls,
    87                         ITIMER_DESC *pitdSleep,
    88                         ITIMER_DESC *pitdReport);
     84                        CHAR *searchPath,
     85                        BOOL recursing,
     86                         char **fileMasks,
     87                         UINT numFileMasks,
     88                        ITIMER_DESC *pitdSleep,
     89                        ITIMER_DESC *pitdReport);
    8990static INT DoMatchingFiles(GREP *grep,
    90                            CHAR *path,
    91                            CHAR **fle,
    92                            UINT numfls,
    93                            ITIMER_DESC *pitdSleep,
    94                            ITIMER_DESC *pitdReport);
     91                           CHAR *path,
     92                           CHAR **fileMasks,
     93                           UINT numFileMasks,
     94                           ITIMER_DESC *pitdSleep,
     95                           ITIMER_DESC *pitdReport);
    9596static BOOL DoOneFile(GREP *grep,
    96                       CHAR *fileName,
    97                       FILEFINDBUF4L *pffb,
    98                       ITIMER_DESC *pitdSleep,
    99                       ITIMER_DESC *pitdReport);
     97                      CHAR *fileName,
     98                      FILEFINDBUF4L *pffb,
     99                      ITIMER_DESC *pitdSleep,
     100                      ITIMER_DESC *pitdReport);
    100101static BOOL DoInsertion(GREP *grep,
    101                         ITIMER_DESC *pitdSleep,
    102                         ITIMER_DESC *pitdReport);
     102                        ITIMER_DESC *pitdSleep,
     103                        ITIMER_DESC *pitdReport);
    103104static BOOL InsertDupe(GREP *grep, CHAR *dir, FILEFINDBUF4L *pffb);
    104105static VOID FillDupes(GREP *grep,
    105                       ITIMER_DESC *pitdSleep,
    106                       ITIMER_DESC *pitdReport);
     106                      ITIMER_DESC *pitdSleep,
     107                      ITIMER_DESC *pitdReport);
    107108
    108109static VOID FreeDupes(GREP *grep);
     
    111112
    112113#define isleap(year) ((((year%4)==0) && ((year%100)!=0)) || \
    113         ((year%400)==0))
     114        ((year%400)==0))
    114115
    115116// Data definitions
     
    152153
    153154static BOOL m_match(CHAR *string, CHAR *pattern, BOOL absolute, BOOL ignore,
    154                     LONG len)
     155                    LONG len)
    155156{
    156157  // return TRUE if pattern found in string
     
    163164    if (absolute)                       // no pattern matching
    164165      return (findstring(pattern, strlen(pattern), string, len,
    165                         (ignore == FALSE)) != NULL);
     166                        (ignore == FALSE)) != NULL);
    166167
    167168    while (*tn && len2 < len) {
    168169      switch (*tn) {
    169170      case ' ':
    170         while (*tn == ' ')
    171           tn++;
    172         while (len2 < len && isspace(string[len2]))
    173           len2++;
    174         break;
     171        while (*tn == ' ')
     172          tn++;
     173        while (len2 < len && isspace(string[len2]))
     174          len2++;
     175        break;
    175176
    176177      case '*':
    177         while (*tn == '*' || *tn == '?')
    178           tn++;
    179         if (!*tn)
    180           return TRUE;
    181         if (ignore) {
    182           while (len2 < len && string[len2] != *tn)
    183             len2++;
    184         }
    185         else {
    186           while (len2 < len && toupper(string[len2] != *tn))
    187             len2++;
    188         }
    189         break;
     178        while (*tn == '*' || *tn == '?')
     179          tn++;
     180        if (!*tn)
     181          return TRUE;
     182        if (ignore) {
     183          while (len2 < len && string[len2] != *tn)
     184            len2++;
     185        }
     186        else {
     187          while (len2 < len && toupper(string[len2] != *tn))
     188            len2++;
     189        }
     190        break;
    190191
    191192      case '[':
    192         tn++;
    193         if (!*tn)
    194           return FALSE;
    195         lo = *tn;
    196         tn++;
    197         if (*tn != '-')
    198           return FALSE;
    199         tn++;
    200         if (!*tn)
    201           return FALSE;
    202         hi = *tn;
    203         tn++;
    204         if (*tn != ']')
    205           return FALSE;
    206         tn++;
    207         if (ignore) {
    208           if ((toupper(string[len2]) >= toupper(lo)) &&
    209               (toupper(string[len2]) <= toupper(hi)))
    210             len2++;
    211           else {
    212             tn = pattern;
    213             len2 = lastlen = lastlen + 1;
    214           }
    215         }
    216         else {
    217           if ((string[len2] >= lo) && (string[len2] <= hi))
    218             len2++;
    219           else {
    220             tn = pattern;
    221             len2 = lastlen = lastlen + 1;
    222           }
    223         }
    224         break;
     193        tn++;
     194        if (!*tn)
     195          return FALSE;
     196        lo = *tn;
     197        tn++;
     198        if (*tn != '-')
     199          return FALSE;
     200        tn++;
     201        if (!*tn)
     202          return FALSE;
     203        hi = *tn;
     204        tn++;
     205        if (*tn != ']')
     206          return FALSE;
     207        tn++;
     208        if (ignore) {
     209          if ((toupper(string[len2]) >= toupper(lo)) &&
     210              (toupper(string[len2]) <= toupper(hi)))
     211            len2++;
     212          else {
     213            tn = pattern;
     214            len2 = lastlen = lastlen + 1;
     215          }
     216        }
     217        else {
     218          if ((string[len2] >= lo) && (string[len2] <= hi))
     219            len2++;
     220          else {
     221            tn = pattern;
     222            len2 = lastlen = lastlen + 1;
     223          }
     224        }
     225        break;
    225226
    226227      case '?':
    227         tn++;
    228         len2++;
    229         break;
     228        tn++;
     229        len2++;
     230        break;
    230231
    231232      case '\\':
    232         tn++;
    233         if (!*tn)
    234           return FALSE;
    235         // else intentional fallthru
     233        tn++;
     234        if (!*tn)
     235          return FALSE;
     236        // else intentional fallthru
    236237      default:
    237         if (ignore) {
    238           if (toupper(*tn) == toupper(string[len2])) {
    239             tn++;
    240             len2++;
    241           }
    242           else {
    243             tn = pattern;
    244             len2 = lastlen = lastlen + 1;
    245           }
    246         }
    247         else {
    248           if (*tn == string[len2]) {
    249             tn++;
    250             len2++;
    251           }
    252           else {
    253             tn = pattern;
    254             len2 = lastlen = lastlen + 1;
    255           }
    256         }
    257         break;
     238        if (ignore) {
     239          if (toupper(*tn) == toupper(string[len2])) {
     240            tn++;
     241            len2++;
     242          }
     243          else {
     244            tn = pattern;
     245            len2 = lastlen = lastlen + 1;
     246          }
     247        }
     248        else {
     249          if (*tn == string[len2]) {
     250            tn++;
     251            len2++;
     252          }
     253          else {
     254            tn = pattern;
     255            len2 = lastlen = lastlen + 1;
     256          }
     257        }
     258        break;
    258259      }
    259260    }
     
    268269
    269270static BOOL match(CHAR *string, CHAR *patterns, BOOL absolute, BOOL ignore,
    270                   LONG len, ULONG numlines, CHAR *matched, BOOL matchall)
     271                  LONG len, ULONG numlines, CHAR *matched, BOOL matchall)
    271272{
    272273  BOOL ret = FALSE;
     
    294295  GREP grep;
    295296  UINT x;
    296   UINT numfls;
    297   static CHAR *fle[512];                // 06 Feb 08 SHL fixme to not be static
     297  UINT numFileMasks;
     298  static CHAR *fileMasks[512];                // 06 Feb 08 SHL FIXME to not be static
    298299  CHAR *p, *pp, searchPath[CCHMAXPATH * 2];
    299300
     
    324325      // hwndStatus does not exist for applet
    325326      WinSetWindowText(hwndStatus ? hwndStatus : grep.hwndCurFile,
    326                        (CHAR *) GetPString(grep.finddupes ? IDS_GREPDUPETEXT :
    327                                                    IDS_GREPSCANTEXT));
     327                       (CHAR *) GetPString(grep.finddupes ? IDS_GREPDUPETEXT :
     328                                                   IDS_GREPSCANTEXT));
    328329
    329330      pp = grep.searchPattern;
    330331      while (*pp) {
    331         if (!grep.absFlag) {
    332           p = GREPCHARS;                // see if any sense in pattern matching
    333           while (*p) {
    334             if (strchr(pp, *p))
    335               break;
    336             p++;
    337           }
    338           if (!*p)                      // nope, turn it off
    339             grep.absFlag = TRUE;
    340         }
    341         pp = pp + strlen(pp) + 1;
     332        if (!grep.absFlag) {
     333          p = GREPCHARS;                // see if any sense in pattern matching
     334          while (*p) {
     335            if (strchr(pp, *p))
     336              break;
     337            p++;
     338          }
     339          if (!*p)                      // nope, turn it off
     340            grep.absFlag = TRUE;
     341        }
     342        pp = pp + strlen(pp) + 1;
    342343      }
    343344
     
    345346      grep.antiattr &= (~FILE_DIRECTORY);
    346347      if (grep.antiattr & FILE_READONLY)
    347         grep.antiattr |= MUST_HAVE_READONLY;
     348        grep.antiattr |= MUST_HAVE_READONLY;
    348349      if (grep.antiattr & FILE_HIDDEN)
    349         grep.antiattr |= MUST_HAVE_HIDDEN;
     350        grep.antiattr |= MUST_HAVE_HIDDEN;
    350351      if (grep.antiattr & FILE_SYSTEM)
    351         grep.antiattr |= MUST_HAVE_SYSTEM;
     352        grep.antiattr |= MUST_HAVE_SYSTEM;
    352353      if (grep.antiattr & FILE_ARCHIVED)
    353         grep.antiattr |= MUST_HAVE_ARCHIVED;
     354        grep.antiattr |= MUST_HAVE_ARCHIVED;
    354355
    355356      grep.anyexcludes = FALSE;
    356       numfls = 0;
    357       fle[numfls++] = strtok(grep.tosearch, ";");
    358 
    359       while ((fle[numfls] = strtok(NULL, ";")) != NULL && numfls < 511) {
    360         if (*fle[numfls] == '/')
    361           grep.anyexcludes = TRUE;
    362         numfls++;
     357      numFileMasks = 0;
     358      fileMasks[numFileMasks++] = strtok(grep.fileMasks, ";");
     359
     360      while ((fileMasks[numFileMasks] = strtok(NULL, ";")) != NULL && numFileMasks < 511) {
     361        if (*fileMasks[numFileMasks] == '/')
     362          grep.anyexcludes = TRUE;
     363        numFileMasks++;
    363364      }
    364365
     
    367368
    368369      // loop through search masks
    369       for (x = 0; x < numfls; x++) {
    370 
    371         if (*fle[x] == '/')             // is an exclude mask only
    372           goto ExcludeSkip;
    373 
    374         // first, separate any path from mask
    375 
    376         p = (char *)(fle[x] + (strlen(fle[x]) - 1));
    377         while (*p != '\\' && *p != ':' && p != fle[x])
    378           --p;
    379 
    380         if (p == fle[x]) {              // no path
    381           strcpy(searchPath, grep.curdir);
    382           strncpy(grep.fileMask, fle[x], CCHMAXPATH);
    383           grep.fileMask[CCHMAXPATH - 1] = 0;
    384         }
    385         else {                          // got to deal with a path
    386           if (*p == ':') {              // just a drive, start in root dir
    387             *p = 0;
    388             p++;
    389             strncpy(searchPath, fle[x], CCHMAXPATH - 2);
    390             searchPath[CCHMAXPATH - 3] = 0;
    391             strcat(searchPath, ":\\");
    392             strcpy(grep.fileMask, p);
    393           }
    394           if (*p == '\\') {
    395             // got a 'full' path
    396             CHAR temp;
    397 
    398             p++;
    399             temp = *p;
    400             *p = 0;
    401             strncpy(searchPath, fle[x], CCHMAXPATH);
    402             searchPath[CCHMAXPATH - 1] = 0;
    403             *p = temp;
    404             strcpy(grep.fileMask, p);
    405           }
    406           if (!*grep.fileMask)
    407             strcpy(grep.fileMask, "*");
    408         }
    409         if (*grep.stopflag)
    410           break;
    411         // do single directory
    412         DoMatchingFiles(&grep, searchPath, fle, numfls, &itdSleep, &itdReport);
    413         if (grep.dirFlag)               // do subdirs
    414           DoAllSubdirs(&grep, searchPath, FALSE, fle, numfls, &itdSleep, &itdReport);
     370      for (x = 0; x < numFileMasks; x++) {
     371
     372         // Ignore exclude masks here
     373        if (*fileMasks[x] == '/')
     374          goto ExcludeSkip;
     375
     376        // Split directory pathname from mask
     377        p = (char *)(fileMasks[x] + (strlen(fileMasks[x]) - 1));
     378        while (*p != '\\' && *p != ':' && p != fileMasks[x])
     379          --p;
     380
     381        if (p == fileMasks[x]) {              // no path
     382          strcpy(searchPath, grep.curdir);
     383          strncpy(grep.fileMask, fileMasks[x], CCHMAXPATH);
     384          grep.fileMask[CCHMAXPATH - 1] = 0;
     385        }
     386        else {                          // got to deal with a path
     387          if (*p == ':') {              // just a drive, start in root dir
     388            *p = 0;
     389            p++;
     390            strncpy(searchPath, fileMasks[x], CCHMAXPATH - 2);
     391            searchPath[CCHMAXPATH - 3] = 0;
     392            strcat(searchPath, ":\\");
     393            strcpy(grep.fileMask, p);
     394          }
     395          if (*p == '\\') {
     396            // got a 'full' path
     397            CHAR temp;
     398
     399            p++;
     400            temp = *p;          // Save for restore
     401            *p = 0;             // Chop after backslash
     402            strncpy(searchPath, fileMasks[x], CCHMAXPATH);
     403            searchPath[CCHMAXPATH - 1] = 0;
     404            *p = temp;
     405            strcpy(grep.fileMask, p);
     406          }
     407          if (!*grep.fileMask)
     408            strcpy(grep.fileMask, "*");
     409        }
     410        if (*grep.stopflag)
     411          break;
     412        // do top level directory
     413        DoMatchingFiles(&grep, searchPath, fileMasks, numFileMasks, &itdSleep, &itdReport);
     414        // Recurse subdirectories if requested
     415        if (grep.dirFlag)
     416          DoAllSubdirs(&grep, searchPath, FALSE, fileMasks, numFileMasks, &itdSleep, &itdReport);
     417
    415418      ExcludeSkip:
    416         if (*grep.stopflag)
    417           break;
    418         if (WinIsWindow(grep.ghab, grep.hwndFiles))
    419           DoInsertion(&grep, &itdSleep, &itdReport);    // insert any remaining objects
     419        if (*grep.stopflag)
     420          break;
     421        if (WinIsWindow(grep.ghab, grep.hwndFiles))
     422          DoInsertion(&grep, &itdSleep, &itdReport);    // insert any remaining objects
    420423      } // for
    421424
    422425      if (WinIsWindow(grep.ghab, grep.hwndFiles))
    423         DoInsertion(&grep, &itdSleep, &itdReport);      // insert any remaining objects
     426        DoInsertion(&grep, &itdSleep, &itdReport);      // insert any remaining objects
    424427
    425428      if (WinIsWindow(grep.ghab, grep.hwndFiles) &&
    426           grep.finddupes &&
    427           !*grep.stopflag)
     429          grep.finddupes &&
     430          !*grep.stopflag)
    428431      {
    429         FillDupes(&grep, &itdSleep, &itdReport);
    430         CollectorsortFlags = 0;
    431         CollectorsortFlags |= SORT_FILENAME;
    432         WinSendMsg(grep.hwndFiles, CM_SORTRECORD, MPFROMP(SortCollectorCnr),
    433                    MPFROMLONG(CollectorsortFlags));
    434         SaySort(WinWindowFromID(WinQueryWindow(grep.hwndFiles, QW_PARENT),
     432        FillDupes(&grep, &itdSleep, &itdReport);
     433        CollectorsortFlags = 0;
     434        CollectorsortFlags |= SORT_FILENAME;
     435        WinSendMsg(grep.hwndFiles, CM_SORTRECORD, MPFROMP(SortCollectorCnr),
     436                   MPFROMLONG(CollectorsortFlags));
     437        SaySort(WinWindowFromID(WinQueryWindow(grep.hwndFiles, QW_PARENT),
    435438                                DIR_SORT), CollectorsortFlags, FALSE);
    436439      }
    437440      if (!PostMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID))        // tell window we're done
    438         WinSendMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID);
     441        WinSendMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID);
    439442      WinDestroyMsgQueue(ghmq);
    440443    }
     
    449452    free(grep.matched);
    450453  }
    451   // 07 Feb 08 SHL fixme to free grep here when not static
     454  // 07 Feb 08 SHL FIXME to free grep here when not static
    452455# ifdef FORTIFY
    453456  Fortify_LeaveScope();
     
    456459}
    457460
    458 static BOOL IsExcluded(CHAR *name, CHAR **fle, UINT numfls)
     461static BOOL IsExcluded(CHAR *name, CHAR **fileMasks, UINT numFileMasks)
    459462{
    460463  UINT x;
     
    468471  else
    469472    n = name;
    470   for (x = 0; x < numfls; x++) {
    471     if (*fle[x] == '/' &&
    472         wildcard((strchr(fle[x], '\\') ||
    473                   strchr(fle[x], ':')) ? name : n, fle[x] + 1, FALSE))
     473  for (x = 0; x < numFileMasks; x++) {
     474    if (*fileMasks[x] == '/' &&
     475        wildcard((strchr(fileMasks[x], '\\') ||
     476                  strchr(fileMasks[x], ':')) ? name : n, fileMasks[x] + 1, FALSE))
    474477      return TRUE;
    475478  }
     
    477480}
    478481
     482/**
     483 * Recurse though subdirectories selecting files
     484 */
     485
    479486static VOID DoAllSubdirs(GREP *grep,
    480                          CHAR *searchPath,
    481                          BOOL recursing,
    482                          CHAR **fle,
    483                          UINT numfls,
    484                          ITIMER_DESC *pitdSleep,
    485                          ITIMER_DESC *pitdReport)
    486 {
    487   // process all subdirectories
    488 
     487                         CHAR *searchPath,
     488                         BOOL recursing,
     489                         CHAR **fileMasks,
     490                         UINT numFileMasks,
     491                         ITIMER_DESC *pitdSleep,
     492                         ITIMER_DESC *pitdReport)
     493{
    489494  FILEFINDBUF4 ffb;
    490495  HDIR findHandle = HDIR_CREATE;
    491   LONG ulFindCnt = 1;
     496  ULONG ulFindCnt = 1;
    492497  CHAR *p = NULL;
    493498
    494   // add a mask to search path
     499  // Append wildcard mask to directory pathname
    495500  AddBackslashToPath(searchPath);
    496   //if (searchPath[strlen(searchPath) - 1] != '\\')
    497   //  strcat(searchPath, "\\");
    498501  strcat(searchPath, "*");
    499   // step through all subdirectories
    500502  DosError(FERR_DISABLEHARDERR);
    501   if (!DosFindFirst(searchPath, &findHandle, (MUST_HAVE_DIRECTORY |
    502                     FILE_ARCHIVED | FILE_SYSTEM | FILE_HIDDEN | FILE_READONLY),
    503                     &ffb, (ULONG) sizeof(ffb),
    504                     (PULONG) & ulFindCnt, FIL_QUERYEASIZE)) {
    505 
    506     // get rid of mask portion, save end-of-directory
    507 
     503  // Find first directory
     504  if (!DosFindFirst(searchPath,
     505                    &findHandle,
     506                    (MUST_HAVE_DIRECTORY | FILE_ARCHIVED | FILE_SYSTEM |
     507                     FILE_HIDDEN | FILE_READONLY),
     508                    &ffb,
     509                    sizeof(ffb),
     510                    &ulFindCnt,
     511                    FIL_QUERYEASIZE))
     512  {
     513    // Point p at appended wildcard pattern to speed up pathname build
    508514    p = strrchr(searchPath, '\\');
    509515    if (p)
     
    512518      p = searchPath;
    513519    do {                                // Process each directory that matches the mask
    514       //priority_normal();
     520      int skip;
    515521      if (*grep->stopflag)
    516         break;
     522        break;
     523      // 2014-02-08 SHL
    517524      // Skip . and ..
    518       if (ffb.achName[0] != '.' ||
    519           (ffb.achName[1] &&
    520            (ffb.achName[1] != '.' || ffb.achName[2]))) {
    521         strcpy(p, ffb.achName);
    522         if (!grep->anyexcludes || !IsExcluded(searchPath, fle, numfls)) {
    523           // 07 Feb 08 SHL
    524           if (IsITimerExpired(pitdReport)) {
    525             if (!hwndStatus)
    526               WinSetWindowText(grep->hwndCurFile, searchPath);
    527             else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
    528               CHAR s[CCHMAXPATH + 64];
    529               sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath);
    530               WinSetWindowText(hwndStatus, s);
    531             }
    532           }
    533           DoMatchingFiles(grep, searchPath, fle, numfls, pitdSleep, pitdReport);
    534           // 07 Feb 08 SHL
    535           if (IsITimerExpired(pitdReport)) {
    536             priority_normal();
    537             if (!hwndStatus)
    538               WinSetWindowText(grep->hwndCurFile, searchPath);
    539             else {
    540               if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
    541                 CHAR s[CCHMAXPATH + 64];
    542                 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath);
    543                 WinSetWindowText(hwndStatus, s);
    544               }
    545             };
    546           }
    547           DoAllSubdirs(grep, searchPath, TRUE, fle, numfls, pitdSleep, pitdReport);
    548         }
     525      skip = ffb.achName[0] == '.' &&
     526             (ffb.achName[1] == 0 ||
     527              (ffb.achName[1] == '.' && ffb.achName[2] == 0));
     528      if (!skip && grep->ignoreSVN) {
     529        // Skip version control meta data directories
     530        skip = stricmp(ffb.achName, ".svn") == 0 ||
     531               stricmp(ffb.achName, ".git") == 0 ||
     532               stricmp(ffb.achName, ".hg") == 0 ||
     533               stricmp(ffb.achName, "CVS") == 0;
    549534      }
     535      if (!skip) {
     536        strcpy(p, ffb.achName);         // Build full directory pathname
     537        skip = grep->anyexcludes && IsExcluded(searchPath, fileMasks, numFileMasks);
     538      }
     539      if (!skip) {
     540        // Directory is selected
     541        // 07 Feb 08 SHL
     542        if (IsITimerExpired(pitdReport)) {
     543          if (!hwndStatus)
     544            WinSetWindowText(grep->hwndCurFile, searchPath);
     545          else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
     546            CHAR s[CCHMAXPATH + 64];
     547            sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath);
     548            WinSetWindowText(hwndStatus, s);
     549          }
     550        }
     551        // Select files from directory
     552        DoMatchingFiles(grep, searchPath, fileMasks, numFileMasks, pitdSleep, pitdReport);
     553        // 07 Feb 08 SHL
     554        if (IsITimerExpired(pitdReport)) {
     555          priority_normal();
     556          if (!hwndStatus)
     557            WinSetWindowText(grep->hwndCurFile, searchPath);
     558          else {
     559            if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
     560              CHAR s[CCHMAXPATH + 64];
     561              sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath);
     562              WinSetWindowText(hwndStatus, s);
     563            }
     564          };
     565        }
     566        // Recurse
     567        DoAllSubdirs(grep, searchPath, TRUE, fileMasks, numFileMasks, pitdSleep, pitdReport);
     568      } // if !skip
    550569      ulFindCnt = 1;
     570      // Get next directory
    551571    } while (!DosFindNext(findHandle,
    552                           &ffb,
    553                           sizeof(ffb), (PULONG) & ulFindCnt));
     572                          &ffb,
     573                          sizeof(ffb),
     574                          &ulFindCnt));
    554575    DosFindClose(findHandle);
    555     //priority_normal();
    556   }
    557   if (p)                                // strip off last directory addition
     576  } // if at least one directory
     577  if (p)                                // Restore orginal directory pathname
    558578    *p = 0;
    559579}
    560580
    561581/**
    562  * Scan for files matching filespecs in single directory
     582 * Select files matching wildcard masks in single directory
    563583 */
    564584
    565585static INT DoMatchingFiles(GREP *grep,
    566                            CHAR *path,
    567                            CHAR **fle,
    568                            UINT numfls,
    569                            ITIMER_DESC *pitdSleep,
    570                            ITIMER_DESC *pitdReport)
    571 {
    572   // process all matching files in a directory
    573 
     586                           CHAR *path,
     587                           CHAR **fileMasks,
     588                           UINT numFileMasks,
     589                           ITIMER_DESC *pitdSleep,
     590                           ITIMER_DESC *pitdReport)
     591{
    574592  PFILEFINDBUF4L pffbArray;
    575593  PFILEFINDBUF4L pffbFile;
     
    591609  MakeFullName(szFindPath);
    592610
    593   // find and save end-of-dir position
     611  // Point p at wildcard mask to speed up pathname build
    594612  p = strrchr(szFindPath, '\\');
    595613  if (p)
     
    598616    p = szFindPath;
    599617
    600   // step through matching files
     618  // Step through matching files
    601619  DosError(FERR_DISABLEHARDERR);
    602620  ulFindCnt = FilesToGet;
    603621  rc = xDosFindFirst(szFindPath,
    604                      &findHandle,
    605                      FILE_NORMAL | grep->attrFile | grep->antiattr,
    606                      pffbArray,
    607                      ulBufBytes,
    608                      &ulFindCnt,
    609                      FIL_QUERYEASIZEL);
     622                     &findHandle,
     623                     FILE_NORMAL | grep->attrFile | grep->antiattr,
     624                     pffbArray,
     625                     ulBufBytes,
     626                     &ulFindCnt,
     627                     FIL_QUERYEASIZEL);
    610628  if (!rc) {
    611629    do {
    612630      // Process each file that matches the mask
    613       //priority_normal();
    614631      pffbFile = pffbArray;
    615632      for (x = 0; x < ulFindCnt; x++) {
    616         if (*grep->stopflag)
    617           break;
    618         if (*pffbFile->achName != '.' ||
    619             (pffbFile->achName[1] && pffbFile->achName[1] != '.')) {
    620           strcpy(p, pffbFile->achName); // build filename
    621           if (strlen(szFindPath) > CCHMAXPATH){
    622             // Complain if pathnames exceeds max
    623             DosFindClose(findHandle);
    624             if (!fDone) {
    625               fDone = TRUE;
    626               saymsg(MB_OK | MB_ICONASTERISK,
    627                      HWND_DESKTOP,
    628                      GetPString(IDS_WARNINGTEXT),
    629                      GetPString(IDS_LENGTHEXCEEDSMAXPATHTEXT));
    630             }
    631             return 1;
    632           }
    633 
    634           // 07 Feb 08 SHL
    635           if (IsITimerExpired(pitdReport)) {
    636             if (!hwndStatus)
    637               WinSetWindowText(grep->hwndCurFile, szFindPath);
    638             else {
    639               if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
    640                 CHAR s[CCHMAXPATH + 64];
    641                 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), szFindPath);
    642                 WinSetWindowText(hwndStatus, s);
    643               }
    644             }
    645           }
    646 
    647           if (!grep->anyexcludes || !IsExcluded(szFindPath, fle, numfls)) {
    648             if (!grep->finddupes)
    649               DoOneFile(grep, szFindPath, pffbFile, pitdSleep, pitdReport);
    650             else if (!InsertDupe(grep, szFindPath, pffbFile)) {
    651               DosFindClose(findHandle);
    652               free(pffbArray);
     633        if (*grep->stopflag)
     634          break;
     635        // 2014-02-08 SHL FIXME to know if really need to skip . and .. here
     636        // We should only be selecting files
     637        if (*pffbFile->achName != '.' ||
     638            (pffbFile->achName[1] && pffbFile->achName[1] != '.')) {
     639          strcpy(p, pffbFile->achName); // build full file pathname
     640          if (strlen(szFindPath) > CCHMAXPATH){
     641            // Complain if pathnames exceeds max
     642            DosFindClose(findHandle);
     643            if (!fDone) {
     644              fDone = TRUE;
     645              saymsg(MB_OK | MB_ICONASTERISK,
     646                     HWND_DESKTOP,
     647                     GetPString(IDS_WARNINGTEXT),
     648                     GetPString(IDS_LENGTHEXCEEDSMAXPATHTEXT));
     649            }
     650            return 1;
     651          }
     652
     653          // 07 Feb 08 SHL
     654          if (IsITimerExpired(pitdReport)) {
     655            if (!hwndStatus)
     656              WinSetWindowText(grep->hwndCurFile, szFindPath);
     657            else {
     658              if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) {
     659                CHAR s[CCHMAXPATH + 64];
     660                sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), szFindPath);
     661                WinSetWindowText(hwndStatus, s);
     662              }
     663            }
     664          }
     665
     666          if (!grep->anyexcludes || !IsExcluded(szFindPath, fileMasks, numFileMasks)) {
     667            // File selected
     668            if (!grep->finddupes)
     669              DoOneFile(grep, szFindPath, pffbFile, pitdSleep, pitdReport);
     670            else if (!InsertDupe(grep, szFindPath, pffbFile)) {
     671              DosFindClose(findHandle);
     672              free(pffbArray);
    653673#             ifdef FORTIFY
    654               Fortify_LeaveScope();
     674              Fortify_LeaveScope();
    655675#              endif
    656               return 1;
    657             }
    658           }
    659         }
    660         if (!pffbFile->oNextEntryOffset)
    661           break;
    662         pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + pffbFile->oNextEntryOffset);
     676              return 1;
     677            }
     678          }
     679        }
     680        if (!pffbFile->oNextEntryOffset)
     681          break;
     682        pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + pffbFile->oNextEntryOffset);
    663683      } // for
    664684      if (*grep->stopflag)
    665         break;
    666       //SleepIfNeeded
     685        break;
    667686      IdleIfNeeded(pitdSleep, 30);
    668687      ulFindCnt = FilesToGet;
     688      // Next file
    669689      rc = xDosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL);
    670690    } while (!rc);
    671691
    672692    DosFindClose(findHandle);
    673     //priority_normal();
    674   } // if
     693  } // if at least one file
    675694
    676695  if (rc && rc != ERROR_NO_MORE_FILES) {
     
    680699      CheckDrive(toupper(*szFindPath), FileSystem, NULL);
    681700      if (strcmp(FileSystem, NTFS))
    682         Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    683                   GetPString(IDS_CANTFINDDIRTEXT), szFindPath);
     701        Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     702                  GetPString(IDS_CANTFINDDIRTEXT), szFindPath);
    684703    }
    685704    else
    686705      Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    687                 GetPString(IDS_CANTFINDDIRTEXT), szFindPath);
     706                GetPString(IDS_CANTFINDDIRTEXT), szFindPath);
    688707  }
    689708
     
    702721    if (grep->insertffb) {
    703722      for (x = 0; grep->insertffb[x]; x++) {
    704         free(grep->insertffb[x]);
     723        free(grep->insertffb[x]);
    705724      }
    706725      free(grep->insertffb);
     
    708727    if (grep->dir) {
    709728      for (x = 0; grep->dir[x]; x++) {
    710         free(grep->dir[x]);
     729        free(grep->dir[x]);
    711730      }
    712731      free(grep->dir);
     
    727746
    728747static BOOL DoInsertion(GREP *grep,
    729                         ITIMER_DESC *pitdSleep,
    730                         ITIMER_DESC *pitdReport)
     748                        ITIMER_DESC *pitdSleep,
     749                        ITIMER_DESC *pitdReport)
    731750{
    732751  RECORDINSERT ri;
     
    745764      ulRecsToInsert = grep->toinsert - x < USHRT_MAX  ? grep->toinsert - x : USHRT_MAX;
    746765      pciFirst = WinSendMsg(grep->hwndFiles, CM_ALLOCRECORD,
    747                        MPFROMLONG(EXTRA_RECORD_BYTES),
    748                        MPFROMLONG(ulRecsToInsert));
     766                       MPFROMLONG(EXTRA_RECORD_BYTES),
     767                       MPFROMLONG(ulRecsToInsert));
    749768      if (!pciFirst) {
    750         Win_Error(grep->hwndFiles, grep->hwndFiles, pszSrcFile, __LINE__,
    751                   PCSZ_CM_ALLOCRECORD);
    752         freegreplist(grep);
    753         return FALSE;
     769        Win_Error(grep->hwndFiles, grep->hwndFiles, pszSrcFile, __LINE__,
     770                  PCSZ_CM_ALLOCRECORD);
     771        freegreplist(grep);
     772        return FALSE;
    754773      }
    755774      else {
    756         pci = pciFirst;
    757         if (grep->sayfiles) {
    758           if (!hwndStatus)
    759             WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT));
    760           else {
    761             if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    762               WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT));
    763           }
    764         }
     775        pci = pciFirst;
     776        if (grep->sayfiles) {
     777          if (!hwndStatus)
     778            WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT));
     779          else {
     780            if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     781              WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT));
     782          }
     783        }
    765784      }
    766785    }
    767786    FillInRecordFromFFB(grep->hwndFiles,
    768                         pci, grep->dir[x], grep->insertffb[x], FALSE, dcd);
     787                        pci, grep->dir[x], grep->insertffb[x], FALSE, dcd);
    769788    pci = (PCNRITEM) pci->rc.preccNextRecord;
    770789    //SleepIfNeeded(pitdSleep, 1);
     
    778797      ri.fInvalidateRecord = TRUE;
    779798      WinSendMsg(grep->hwndFiles,
    780                 CM_INSERTRECORD, MPFROMP(pciFirst), MPFROMP(&ri));
     799                CM_INSERTRECORD, MPFROMP(pciFirst), MPFROMP(&ri));
    781800      if (dcd) {
    782         DosRequestMutexSem(hmtxFM2Globals, SEM_INDEFINITE_WAIT);
    783         dcd->ullTotalBytes += grep->insertedbytes;
    784         DosReleaseMutexSem(hmtxFM2Globals);
     801        DosRequestMutexSem(hmtxFM2Globals, SEM_INDEFINITE_WAIT);
     802        dcd->ullTotalBytes += grep->insertedbytes;
     803        DosReleaseMutexSem(hmtxFM2Globals);
    785804      }
    786805      pciFirst = NULL;
     
    800819
    801820static BOOL InsertGrepFile(GREP *grep,
    802                            CHAR *pszFileName,
    803                            PFILEFINDBUF4L pffb,
    804                            ITIMER_DESC *pitdSleep,
    805                            ITIMER_DESC *pitdReport)
     821                           CHAR *pszFileName,
     822                           PFILEFINDBUF4L pffb,
     823                           ITIMER_DESC *pitdSleep,
     824                           ITIMER_DESC *pitdReport)
    806825{
    807826  PSZ p;
     
    820839      // Got directory
    821840      if (p < szDirectory + 4)
    822         p++;                            // Include root backslash
     841        p++;                            // Include root backslash
    823842      *p = 0;
    824843
    825844      if (!grep->insertffb) {
    826         // Allocate 1 extra for end marker?
    827         grep->insertffb = xmallocz(sizeof(PFILEFINDBUF4L) * (FilesToGet + 1),
    828                                    pszSrcFile, __LINE__);
    829         if (!grep->insertffb)
    830           return FALSE;
    831         grep->dir = xmallocz(sizeof(CHAR *) * (FilesToGet + 1),
    832                              pszSrcFile, __LINE__);
    833         if (!grep->dir) {
    834           free(grep->insertffb);
     845        // Allocate 1 extra for end marker?
     846        grep->insertffb = xmallocz(sizeof(PFILEFINDBUF4L) * (FilesToGet + 1),
     847                                   pszSrcFile, __LINE__);
     848        if (!grep->insertffb)
     849          return FALSE;
     850        grep->dir = xmallocz(sizeof(CHAR *) * (FilesToGet + 1),
     851                             pszSrcFile, __LINE__);
     852        if (!grep->dir) {
     853          free(grep->insertffb);
    835854#         ifdef FORTIFY
    836           Fortify_LeaveScope();
     855          Fortify_LeaveScope();
    837856#          endif
    838           return FALSE;
    839         }
     857          return FALSE;
     858        }
    840859      }
    841860
    842861      grep->insertffb[grep->toinsert] =
    843         xmalloc(sizeof(FILEFINDBUF4L), pszSrcFile, __LINE__);
     862        xmalloc(sizeof(FILEFINDBUF4L), pszSrcFile, __LINE__);
    844863      if (!grep->insertffb[grep->toinsert])
    845         return FALSE;
     864        return FALSE;
    846865      memcpy(grep->insertffb[grep->toinsert], pffb, sizeof(FILEFINDBUF4L));
    847866
    848867      grep->dir[grep->toinsert] = xstrdup(szDirectory, pszSrcFile, __LINE__);
    849868      if (!grep->dir) {
    850         free(grep->insertffb[grep->toinsert]);
     869        free(grep->insertffb[grep->toinsert]);
    851870#       ifdef FORTIFY
    852         Fortify_LeaveScope();
     871        Fortify_LeaveScope();
    853872#        endif
    854         return FALSE;
     873        return FALSE;
    855874      }
    856875
     
    859878      // 07 Oct 09 SHL honor sync updates
    860879      if (grep->toinsert == FilesToGet || fSyncUpdates)
    861         return DoInsertion(grep, pitdSleep, pitdReport);
     880        return DoInsertion(grep, pitdSleep, pitdReport);
    862881      return TRUE;
    863882    }
     
    871890
    872891static BOOL DoOneFile(GREP *grep,
    873                       CHAR *pszFileName,
    874                       FILEFINDBUF4L *pffb,
    875                       ITIMER_DESC *pitdSleep,
    876                       ITIMER_DESC *pitdReport)
     892                      CHAR *pszFileName,
     893                      FILEFINDBUF4L *pffb,
     894                      ITIMER_DESC *pitdSleep,
     895                      ITIMER_DESC *pitdReport)
    877896{
    878897  // process a single file
     
    888907    else {
    889908      if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    890         WinSetWindowText(hwndStatus, pszFileName);
     909        WinSetWindowText(hwndStatus, pszFileName);
    891910    }
    892911  }
     
    900919    if (grep->greaterthan) {
    901920      if (adjsize < grep->greaterthan)
    902         keep = FALSE;
     921        keep = FALSE;
    903922    }
    904923    if (keep && grep->lessthan) {
    905924      if (adjsize > grep->lessthan)
    906         keep = FALSE;
     925        keep = FALSE;
    907926    }
    908927    if (!keep)
     
    918937    if (grep->newerthan) {
    919938      if (numsecs < grep->newerthan)
    920         keep = FALSE;
     939        keep = FALSE;
    921940    }
    922941    if (keep && grep->olderthan) {
    923942      if (numsecs > grep->olderthan)
    924         keep = FALSE;
     943        keep = FALSE;
    925944    }
    926945    if (!keep)
     
    942961      info = head;
    943962      while (info && !strmatch) {
    944         alltext = TRUE;
    945         switch (*(USHORT *)info->value) {
    946         case EAT_ASCII:
    947           if (match(info->value + (sizeof(USHORT) * 2),
    948                     grep->searchPattern, grep->absFlag,
    949                     grep->caseFlag == FALSE,
    950                     info->cbValue - (sizeof(USHORT) * 2),
    951                     grep->numlines,
    952                     grep->matched,
    953                     !grep->findifany)) {
    954             strmatch = TRUE;
    955           }
    956           break;
    957         case EAT_MVST:
    958           type = *(USHORT *)(info->value + (sizeof(USHORT) * 3));
    959           if (type == EAT_ASCII) {
    960             data = info->value + (sizeof(USHORT) * 4);
    961             len = *(USHORT *) data;
    962             data += sizeof(USHORT);
    963             while ((data - info->value) + len <= info->cbValue) {
    964               temp = *(data + len);
    965               *(data + len) = 0;
    966               if (match(data,
    967                         grep->searchPattern,
    968                         grep->absFlag,
    969                         (grep->caseFlag == FALSE),
    970                         len,
    971                         grep->numlines, grep->matched, !grep->findifany)) {
    972                 strmatch = TRUE;
    973                 break;
    974               }
    975               data += len;
    976               if (data - info->value >= info->cbValue)
    977                 break;
    978               *data = temp;
    979               len = *(USHORT *) data;
    980               data += sizeof(USHORT);
    981             }
    982           }
    983           break;
    984         case EAT_MVMT:
    985           data = info->value + (sizeof(USHORT) * 3);
    986           type = *(USHORT *) data;
    987           data += sizeof(USHORT);
    988           len = *(USHORT *) data;
    989           data += sizeof(USHORT);
    990           while ((data - info->value) - len <= info->cbValue) {
    991             if (type != EAT_ASCII) {
    992               alltext = FALSE;
    993               break;
    994             }
    995             data += len;
    996             if (data - info->value >= info->cbValue)
    997               break;
    998             type = *(USHORT *) data;
    999             data += sizeof(USHORT);
    1000             len = *(USHORT *) data;
    1001             data += sizeof(USHORT);
    1002           }
    1003           if (alltext) {
    1004             data = info->value + (sizeof(USHORT) * 3);
    1005             type = *(USHORT *) data;
    1006             data += sizeof(USHORT);
    1007             len = *(USHORT *) data;
    1008             data += sizeof(USHORT);
    1009             while ((data - info->value) - len <= info->cbValue) {
    1010               temp = *(data + len);
    1011               *(data + len) = 0;
    1012               if (match(data,
    1013                         grep->searchPattern,
    1014                         grep->absFlag,
    1015                         (grep->caseFlag == FALSE),
    1016                         len,
    1017                         grep->numlines, grep->matched, !grep->findifany)) {
    1018                 strmatch = TRUE;
    1019                 break;
    1020               }
    1021               data += len;
    1022               *data = temp;
    1023               if (data - info->value >= info->cbValue)
    1024                 break;
    1025               type = *(USHORT *) data;
    1026               data += sizeof(USHORT);
    1027               len = *(USHORT *) data;
    1028               data += sizeof(USHORT);
    1029             }
    1030           }
    1031           break;
    1032         default:
    1033           break;
    1034         }
    1035         info = info->next;
     963        alltext = TRUE;
     964        switch (*(USHORT *)info->value) {
     965        case EAT_ASCII:
     966          if (match(info->value + (sizeof(USHORT) * 2),
     967                    grep->searchPattern, grep->absFlag,
     968                    grep->caseFlag == FALSE,
     969                    info->cbValue - (sizeof(USHORT) * 2),
     970                    grep->numlines,
     971                    grep->matched,
     972                    !grep->findifany)) {
     973            strmatch = TRUE;
     974          }
     975          break;
     976        case EAT_MVST:
     977          type = *(USHORT *)(info->value + (sizeof(USHORT) * 3));
     978          if (type == EAT_ASCII) {
     979            data = info->value + (sizeof(USHORT) * 4);
     980            len = *(USHORT *) data;
     981            data += sizeof(USHORT);
     982            while ((data - info->value) + len <= info->cbValue) {
     983              temp = *(data + len);
     984              *(data + len) = 0;
     985              if (match(data,
     986                        grep->searchPattern,
     987                        grep->absFlag,
     988                        (grep->caseFlag == FALSE),
     989                        len,
     990                        grep->numlines, grep->matched, !grep->findifany)) {
     991                strmatch = TRUE;
     992                break;
     993              }
     994              data += len;
     995              if (data - info->value >= info->cbValue)
     996                break;
     997              *data = temp;
     998              len = *(USHORT *) data;
     999              data += sizeof(USHORT);
     1000            }
     1001          }
     1002          break;
     1003        case EAT_MVMT:
     1004          data = info->value + (sizeof(USHORT) * 3);
     1005          type = *(USHORT *) data;
     1006          data += sizeof(USHORT);
     1007          len = *(USHORT *) data;
     1008          data += sizeof(USHORT);
     1009          while ((data - info->value) - len <= info->cbValue) {
     1010            if (type != EAT_ASCII) {
     1011              alltext = FALSE;
     1012              break;
     1013            }
     1014            data += len;
     1015            if (data - info->value >= info->cbValue)
     1016              break;
     1017            type = *(USHORT *) data;
     1018            data += sizeof(USHORT);
     1019            len = *(USHORT *) data;
     1020            data += sizeof(USHORT);
     1021          }
     1022          if (alltext) {
     1023            data = info->value + (sizeof(USHORT) * 3);
     1024            type = *(USHORT *) data;
     1025            data += sizeof(USHORT);
     1026            len = *(USHORT *) data;
     1027            data += sizeof(USHORT);
     1028            while ((data - info->value) - len <= info->cbValue) {
     1029              temp = *(data + len);
     1030              *(data + len) = 0;
     1031              if (match(data,
     1032                        grep->searchPattern,
     1033                        grep->absFlag,
     1034                        (grep->caseFlag == FALSE),
     1035                        len,
     1036                        grep->numlines, grep->matched, !grep->findifany)) {
     1037                strmatch = TRUE;
     1038                break;
     1039              }
     1040              data += len;
     1041              *data = temp;
     1042              if (data - info->value >= info->cbValue)
     1043                break;
     1044              type = *(USHORT *) data;
     1045              data += sizeof(USHORT);
     1046              len = *(USHORT *) data;
     1047              data += sizeof(USHORT);
     1048            }
     1049          }
     1050          break;
     1051        default:
     1052          break;
     1053        }
     1054        info = info->next;
    10361055      }                                 // while
    10371056      Free_FEAList(head);
     
    10481067      inputFile = xfsopen(pszFileName, moderb, SH_DENYNO, pszSrcFile, __LINE__, TRUE);
    10491068      if (inputFile) {
    1050         pos = ftell(inputFile);
    1051         while (!feof(inputFile)) {
    1052           if (pos)
    1053             fseek(inputFile, pos - 1024, SEEK_SET);
    1054           len = fread(input, 1, 65536, inputFile);
    1055           if (len >= 0) {
    1056             if (*grep->stopflag)
    1057               break;
    1058             if (match(input,
    1059                       grep->searchPattern,
    1060                       grep->absFlag,
    1061                       (grep->caseFlag == FALSE),
    1062                       len, grep->numlines, grep->matched, !grep->findifany)) {
    1063               strmatch = TRUE;
    1064               break;
    1065             }
    1066           }
    1067           else
    1068             break;
    1069         }
    1070         fclose(inputFile);
     1069        pos = ftell(inputFile);
     1070        while (!feof(inputFile)) {
     1071          if (pos)
     1072            fseek(inputFile, pos - 1024, SEEK_SET);
     1073          len = fread(input, 1, 65536, inputFile);
     1074          if (len >= 0) {
     1075            if (*grep->stopflag)
     1076              break;
     1077            if (match(input,
     1078                      grep->searchPattern,
     1079                      grep->absFlag,
     1080                      (grep->caseFlag == FALSE),
     1081                      len, grep->numlines, grep->matched, !grep->findifany)) {
     1082              strmatch = TRUE;
     1083              break;
     1084            }
     1085          }
     1086          else
     1087            break;
     1088        }
     1089        fclose(inputFile);
    10711090      }
    10721091      free(input);
     
    11781197    else {
    11791198      while (!feof(fp)) {
    1180         len = fread(buffer, 1, 65535, fp);
    1181         if (len && len < 65536L)
    1182           CRC = CRCBlock(buffer, len, CRC);
    1183         else
    1184           break;
    1185         // DosSleep(0); //26 Aug 07 GKY 1       // 07 Feb 08 SHL
     1199        len = fread(buffer, 1, 65535, fp);
     1200        if (len && len < 65536L)
     1201          CRC = CRCBlock(buffer, len, CRC);
     1202        else
     1203          break;
     1204        // DosSleep(0); //26 Aug 07 GKY 1       // 07 Feb 08 SHL
    11861205      }
    11871206      fclose(fp);
     
    13431362
    13441363static VOID FillDupes(GREP *grep,
    1345                       ITIMER_DESC *pitdSleep,
    1346                       ITIMER_DESC *pitdReport)
     1364                      ITIMER_DESC *pitdSleep,
     1365                      ITIMER_DESC *pitdReport)
    13471366{
    13481367  DUPES *c, *i, **r;
     
    13731392      y = 0;
    13741393      for (i = grep->dupehead; i; i = i->next) {
    1375         grep->dupenames[y] = i;
    1376         if (!grep->nosizedupes)
    1377           grep->dupesizes[y] = i;
    1378         y++;
     1394        grep->dupenames[y] = i;
     1395        if (!grep->nosizedupes)
     1396          grep->dupesizes[y] = i;
     1397        y++;
    13791398      }
    13801399      grep->dupenames[y] = NULL;        // Mark end
    13811400      if (!grep->nosizedupes)
    1382         grep->dupesizes[y] = NULL;
     1401        grep->dupesizes[y] = NULL;
    13831402
    13841403      InitITimer(pitdSleep, 0);         // Reset rate estimator
     
    13871406
    13881407      qsort(grep->dupenames,
    1389             x,
    1390             sizeof(DUPES *),
    1391             grep->ignoreextdupes ? comparenamesqe : comparenamesq);
     1408            x,
     1409            sizeof(DUPES *),
     1410            grep->ignoreextdupes ? comparenamesqe : comparenamesq);
    13921411      SleepIfNeeded(pitdSleep, 1);
    13931412      // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL
    13941413      if (!grep->nosizedupes) {
    1395         qsort(grep->dupesizes, x, sizeof(DUPES *), comparesizesq);
    1396         SleepIfNeeded(pitdSleep, 1);
    1397         // DosSleep(0); //26 Aug 07 GKY 1       // 07 Feb 08 SHL
     1414        qsort(grep->dupesizes, x, sizeof(DUPES *), comparesizesq);
     1415        SleepIfNeeded(pitdSleep, 1);
     1416        // DosSleep(0); //26 Aug 07 GKY 1       // 07 Feb 08 SHL
    13981417      }
    13991418
    14001419      if (!hwndStatus)
    1401         WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
     1420        WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
    14021421      else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1403         WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
     1422        WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
    14041423
    14051424      InitITimer(pitdSleep, 0);         // Reset rate estimator
     
    14071426      y = 0;
    14081427      while (i) {
    1409         if (*grep->stopflag)
    1410           break;
    1411         SleepIfNeeded(pitdSleep, 1);    // 07 Feb 08 SHL
    1412         if (!(i->flags & GF_SKIPME)) {
    1413           r = (DUPES **) bsearch(i, grep->dupenames, x, sizeof(DUPES *),
    1414                                 ((grep->ignoreextdupes) ? comparenamesbe :
    1415                                   comparenamesb));
    1416           if (r) {
    1417             while (r > grep->dupenames && ((grep->ignoreextdupes) ?
    1418                                         !comparenamesqe((r - 1), &i) :
    1419                                         !comparenamesq((r - 1), &i)))
    1420               r--;
    1421             while (*r && ((grep->ignoreextdupes) ?
    1422                           !comparenamesqe(r, &i) : !comparenamesq(r, &i))) {
    1423               if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME))) {
    1424                 r++;
    1425                 continue;
    1426               }
    1427               if (grep->CRCdupes) {
    1428                 if ((*r)->CRC == -1L) {
    1429                   (*r)->CRC = CRCFile((*r)->name, &error);
    1430                   if (error)
    1431                     (*r)->CRC = -1L;
    1432                   else if ((*r)->CRC == -1L)
    1433                     (*r)->CRC = 0L;
    1434                 }
    1435                 if (i->CRC == -1L) {
    1436                   i->CRC = CRCFile(i->name, &error);
    1437                   if (error)
    1438                     i->CRC = -1L;
    1439                   else if (i->CRC == -1L)
    1440                     i->CRC = 0L;
    1441                 }
    1442                 if (((*r)->size != i->size) || ((*r)->CRC != -1L &&
    1443                                                 i->CRC != -1L
    1444                                                 && (*r)->CRC != i->CRC)) {
    1445                   r++;
    1446                   continue;
    1447                 }
    1448               }
    1449               if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) {
    1450                 (*r)->flags |= GF_INSERTED;
    1451                 if (grep->sayfiles) {
    1452                   if (!hwndStatus)
    1453                     WinSetWindowText(grep->hwndFiles, (*r)->name);
    1454                   else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1455                     WinSetWindowText(hwndStatus, (*r)->name);
    1456                 }
    1457                 if ((*r)->size == i->size &&
    1458                     (i->date.year == (*r)->date.year &&
    1459                      i->date.month == (*r)->date.month &&
    1460                      i->date.day == (*r)->date.day &&
    1461                      i->time.hours == (*r)->time.hours &&
    1462                      i->time.minutes == (*r)->time.minutes &&
    1463                      i->time.twosecs == (*r)->time.twosecs))
    1464                   (*r)->flags |= GF_SKIPME;
    1465               }
    1466               if (!(i->flags & (GF_INSERTED | GF_SKIPME))) {
    1467                 if (!AddToList(i->name, &list, &numfiles, &numalloced)) {
    1468                   i->flags |= GF_INSERTED;
    1469                   if ((*r)->flags & GF_SKIPME)
    1470                     i->flags |= GF_SKIPME;
    1471                 }
    1472               }
    1473               r++;
    1474             }
    1475           }
    1476           if (!grep->nosizedupes) {
    1477             r = (DUPES **) bsearch(i,
    1478                                    grep->dupesizes,
    1479                                    x, sizeof(DUPES *), comparesizesb);
    1480             if (r) {
    1481               while (r > grep->dupesizes && !comparesizesq((r - 1), &i))
    1482                 r--;
    1483               while (*r && !comparesizesq(r, &i)) {
    1484                 if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME)) ||
    1485                     (i->date.year != (*r)->date.year ||
    1486                      i->date.month != (*r)->date.month ||
    1487                      i->date.day != (*r)->date.day ||
    1488                      i->time.hours != (*r)->time.hours ||
    1489                      i->time.minutes != (*r)->time.minutes ||
    1490                      i->time.twosecs != (*r)->time.twosecs)) {
    1491                   r++;
    1492                   continue;
    1493                 }
    1494                 if (grep->CRCdupes) {
    1495                   if ((*r)->CRC == -1L) {
    1496                     (*r)->CRC = CRCFile((*r)->name, &error);
    1497                     if (error)
    1498                       (*r)->CRC = -1L;
    1499                     else if ((*r)->CRC == -1L)
    1500                       (*r)->CRC = 0L;
    1501                   }
    1502                   if (i->CRC == -1L) {
    1503                     i->CRC = CRCFile(i->name, &error);
    1504                     if (error)
    1505                       i->CRC = -1L;
    1506                     else if (i->CRC == -1L)
    1507                       i->CRC = 0L;
    1508                   }
    1509                   if ((*r)->CRC != -1L && i->CRC != -1L &&
    1510                       (*r)->CRC != i->CRC) {
    1511                     *r += 1;
    1512                     continue;
    1513                   }
    1514                 }
    1515                 if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) {
    1516                   if (grep->sayfiles) {
    1517                     if (!hwndStatus)
    1518                       WinSetWindowText(grep->hwndCurFile, (*r)->name);
    1519                     else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1520                       WinSetWindowText(hwndStatus, (*r)->name);
    1521                   }
    1522                   (*r)->flags |= GF_INSERTED;
    1523                   if (((grep->ignoreextdupes) ?
    1524                        comparenamesqe(r, &i) : comparenamesq(r, &i)))
    1525                     (*r)->flags |= GF_SKIPME;
    1526                 }
    1527                 if (!(i->flags & (GF_INSERTED | GF_SKIPME))) {
    1528                   if (!AddToList(i->name, &list, &numfiles, &numalloced)) {
    1529                     i->flags |= GF_INSERTED;
    1530                     if ((*r)->flags & GF_SKIPME)
    1531                       i->flags |= GF_SKIPME;
    1532                   }
    1533                 }
    1534                 r++;
    1535               }
    1536             }
    1537           }
    1538         }
    1539         i = i->next;
    1540         y++;
    1541         // 08 Feb 08 SHL
    1542         if (IsITimerExpired(pitdReport)) {
    1543           CHAR s[44];
    1544           sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
    1545           if (!hwndStatus)
    1546             WinSetWindowText(grep->hwndCurFile, s);
    1547           else {
    1548             if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1549               WinSetWindowText(hwndStatus, s);
    1550           }
    1551         }
     1428        if (*grep->stopflag)
     1429          break;
     1430        SleepIfNeeded(pitdSleep, 1);    // 07 Feb 08 SHL
     1431        if (!(i->flags & GF_SKIPME)) {
     1432          r = (DUPES **) bsearch(i, grep->dupenames, x, sizeof(DUPES *),
     1433                                ((grep->ignoreextdupes) ? comparenamesbe :
     1434                                  comparenamesb));
     1435          if (r) {
     1436            while (r > grep->dupenames && ((grep->ignoreextdupes) ?
     1437                                        !comparenamesqe((r - 1), &i) :
     1438                                        !comparenamesq((r - 1), &i)))
     1439              r--;
     1440            while (*r && ((grep->ignoreextdupes) ?
     1441                          !comparenamesqe(r, &i) : !comparenamesq(r, &i))) {
     1442              if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME))) {
     1443                r++;
     1444                continue;
     1445              }
     1446              if (grep->CRCdupes) {
     1447                if ((*r)->CRC == -1L) {
     1448                  (*r)->CRC = CRCFile((*r)->name, &error);
     1449                  if (error)
     1450                    (*r)->CRC = -1L;
     1451                  else if ((*r)->CRC == -1L)
     1452                    (*r)->CRC = 0L;
     1453                }
     1454                if (i->CRC == -1L) {
     1455                  i->CRC = CRCFile(i->name, &error);
     1456                  if (error)
     1457                    i->CRC = -1L;
     1458                  else if (i->CRC == -1L)
     1459                    i->CRC = 0L;
     1460                }
     1461                if (((*r)->size != i->size) || ((*r)->CRC != -1L &&
     1462                                                i->CRC != -1L
     1463                                                && (*r)->CRC != i->CRC)) {
     1464                  r++;
     1465                  continue;
     1466                }
     1467              }
     1468              if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) {
     1469                (*r)->flags |= GF_INSERTED;
     1470                if (grep->sayfiles) {
     1471                  if (!hwndStatus)
     1472                    WinSetWindowText(grep->hwndFiles, (*r)->name);
     1473                  else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     1474                    WinSetWindowText(hwndStatus, (*r)->name);
     1475                }
     1476                if ((*r)->size == i->size &&
     1477                    (i->date.year == (*r)->date.year &&
     1478                     i->date.month == (*r)->date.month &&
     1479                     i->date.day == (*r)->date.day &&
     1480                     i->time.hours == (*r)->time.hours &&
     1481                     i->time.minutes == (*r)->time.minutes &&
     1482                     i->time.twosecs == (*r)->time.twosecs))
     1483                  (*r)->flags |= GF_SKIPME;
     1484              }
     1485              if (!(i->flags & (GF_INSERTED | GF_SKIPME))) {
     1486                if (!AddToList(i->name, &list, &numfiles, &numalloced)) {
     1487                  i->flags |= GF_INSERTED;
     1488                  if ((*r)->flags & GF_SKIPME)
     1489                    i->flags |= GF_SKIPME;
     1490                }
     1491              }
     1492              r++;
     1493            }
     1494          }
     1495          if (!grep->nosizedupes) {
     1496            r = (DUPES **) bsearch(i,
     1497                                   grep->dupesizes,
     1498                                   x, sizeof(DUPES *), comparesizesb);
     1499            if (r) {
     1500              while (r > grep->dupesizes && !comparesizesq((r - 1), &i))
     1501                r--;
     1502              while (*r && !comparesizesq(r, &i)) {
     1503                if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME)) ||
     1504                    (i->date.year != (*r)->date.year ||
     1505                     i->date.month != (*r)->date.month ||
     1506                     i->date.day != (*r)->date.day ||
     1507                     i->time.hours != (*r)->time.hours ||
     1508                     i->time.minutes != (*r)->time.minutes ||
     1509                     i->time.twosecs != (*r)->time.twosecs)) {
     1510                  r++;
     1511                  continue;
     1512                }
     1513                if (grep->CRCdupes) {
     1514                  if ((*r)->CRC == -1L) {
     1515                    (*r)->CRC = CRCFile((*r)->name, &error);
     1516                    if (error)
     1517                      (*r)->CRC = -1L;
     1518                    else if ((*r)->CRC == -1L)
     1519                      (*r)->CRC = 0L;
     1520                  }
     1521                  if (i->CRC == -1L) {
     1522                    i->CRC = CRCFile(i->name, &error);
     1523                    if (error)
     1524                      i->CRC = -1L;
     1525                    else if (i->CRC == -1L)
     1526                      i->CRC = 0L;
     1527                  }
     1528                  if ((*r)->CRC != -1L && i->CRC != -1L &&
     1529                      (*r)->CRC != i->CRC) {
     1530                    *r += 1;
     1531                    continue;
     1532                  }
     1533                }
     1534                if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) {
     1535                  if (grep->sayfiles) {
     1536                    if (!hwndStatus)
     1537                      WinSetWindowText(grep->hwndCurFile, (*r)->name);
     1538                    else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     1539                      WinSetWindowText(hwndStatus, (*r)->name);
     1540                  }
     1541                  (*r)->flags |= GF_INSERTED;
     1542                  if (((grep->ignoreextdupes) ?
     1543                       comparenamesqe(r, &i) : comparenamesq(r, &i)))
     1544                    (*r)->flags |= GF_SKIPME;
     1545                }
     1546                if (!(i->flags & (GF_INSERTED | GF_SKIPME))) {
     1547                  if (!AddToList(i->name, &list, &numfiles, &numalloced)) {
     1548                    i->flags |= GF_INSERTED;
     1549                    if ((*r)->flags & GF_SKIPME)
     1550                      i->flags |= GF_SKIPME;
     1551                  }
     1552                }
     1553                r++;
     1554              }
     1555            }
     1556          }
     1557        }
     1558        i = i->next;
     1559        y++;
     1560        // 08 Feb 08 SHL
     1561        if (IsITimerExpired(pitdReport)) {
     1562          CHAR s[44];
     1563          sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
     1564          if (!hwndStatus)
     1565            WinSetWindowText(grep->hwndCurFile, s);
     1566          else {
     1567            if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     1568              WinSetWindowText(hwndStatus, s);
     1569          }
     1570        }
    15521571      } // while
    15531572    }
    15541573    else {
    1555       // Insufficient memory - fall back to slow method - fixme to saymsg?
     1574      // Insufficient memory - fall back to slow method - FIXME to saymsg?
    15561575      if (!fErrorBeepOff)
    1557         DosBeep(50, 100);
     1576        DosBeep(50, 100);
    15581577      if (!hwndStatus)
    1559         WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
     1578        WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
    15601579      else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1561         WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
     1580        WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT));
    15621581      x = y = 0;
    15631582      xfree(grep->dupenames, pszSrcFile, __LINE__);
     
    15721591      i = grep->dupehead;
    15731592      while (i) {
    1574         if (*grep->stopflag)
    1575           break;
    1576         SleepIfNeeded(pitdSleep, 1);
    1577         if (!(i->flags & GF_SKIPME)) {
    1578           if (IsITimerExpired(pitdReport)) {
    1579             // if (!(y % cntr)) { }
    1580             CHAR s[44];
    1581             sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
    1582             if (!hwndStatus)
    1583               WinSetWindowText(grep->hwndCurFile, s);
    1584             else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1585               WinSetWindowText(hwndStatus, s);
    1586             // DosSleep(0); //26 Aug 07 GKY 1   // 07 Feb 08 SHL
    1587           }
    1588           y++;
    1589           pi = strrchr(i->name, '\\');
    1590           if (pi)
    1591             pi++;
    1592           else
    1593             pi = i->name;
    1594           c = grep->dupehead;
    1595           while (c) {
    1596             if (*grep->stopflag)
    1597               break;
    1598             if (c != i && !(c->flags & (GF_INSERTED | GF_SKIPME))) {
    1599               x++;
    1600               pc = strrchr(c->name, '\\');
    1601               if (pc)
    1602                 pc++;
    1603               else
    1604                 pc = c->name;
    1605               if ((!grep->nosizedupes && i->size == c->size && i->date.year == c->date.year && i->date.month == c->date.month && i->date.day == c->date.day && i->time.hours == c->time.hours && i->time.minutes == c->time.minutes && i->time.twosecs == c->time.twosecs) || !stricmp(pc, pi)) {       // potential dupe
    1606                 if (grep->CRCdupes) {
    1607                   if (grep->CRCdupes) {
    1608                     if (c->CRC == -1L) {
    1609                       c->CRC = CRCFile(c->name, &error);
    1610                       if (error)
    1611                         c->CRC = -1L;
    1612                       else if (c->CRC == -1L)
    1613                         c->CRC = 0L;
    1614                     }
    1615                     if (i->CRC == -1L) {
    1616                       i->CRC = CRCFile(i->name, &error);
    1617                       if (error)
    1618                         i->CRC = -1L;
    1619                       else if (i->CRC == -1L)
    1620                         i->CRC = 0L;
    1621                     }
    1622                     if ((c->size != i->size) || (c->CRC != -1L &&
    1623                                                 i->CRC != -1L
    1624                                                 && c->CRC != i->CRC)) {
    1625                       c = c->next;
    1626                       continue;
    1627                     }
    1628                   }
    1629                 }
    1630                 if (AddToList(c->name, &list, &numfiles, &numalloced))
    1631                   goto BreakOut;        // Failed
    1632                 if (!(i->flags & GF_INSERTED)) {
    1633                   if (AddToList(i->name, &list, &numfiles, &numalloced))
    1634                     goto BreakOut;      // Failed
    1635                 }
    1636                 if (grep->sayfiles) {
    1637                   if (!hwndStatus)
    1638                     WinSetWindowText(grep->hwndCurFile, pc);
    1639                   else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
    1640                     WinSetWindowText(hwndStatus, pc);
    1641                 }
    1642                 c->flags |= GF_INSERTED;
    1643                 i->flags |= GF_INSERTED;
    1644                 if (!stricmp(pc, pi)) {
    1645                   c->flags |= GF_SKIPME;
    1646                   i->flags |= GF_SKIPME;
    1647                 }
    1648               }
    1649               // else if (!(x % 100))   // 07 Feb 08 SHL
    1650               //        DosSleep(0);  //26 Aug 07 GKY 1 // 07 Feb 08 SHL
    1651             }
    1652             c = c->next;
    1653           }
    1654         }
    1655         i = i->next;
     1593        if (*grep->stopflag)
     1594          break;
     1595        SleepIfNeeded(pitdSleep, 1);
     1596        if (!(i->flags & GF_SKIPME)) {
     1597          if (IsITimerExpired(pitdReport)) {
     1598            // if (!(y % cntr)) { }
     1599            CHAR s[44];
     1600            sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
     1601            if (!hwndStatus)
     1602              WinSetWindowText(grep->hwndCurFile, s);
     1603            else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     1604              WinSetWindowText(hwndStatus, s);
     1605            // DosSleep(0); //26 Aug 07 GKY 1   // 07 Feb 08 SHL
     1606          }
     1607          y++;
     1608          pi = strrchr(i->name, '\\');
     1609          if (pi)
     1610            pi++;
     1611          else
     1612            pi = i->name;
     1613          c = grep->dupehead;
     1614          while (c) {
     1615            if (*grep->stopflag)
     1616              break;
     1617            if (c != i && !(c->flags & (GF_INSERTED | GF_SKIPME))) {
     1618              x++;
     1619              pc = strrchr(c->name, '\\');
     1620              if (pc)
     1621                pc++;
     1622              else
     1623                pc = c->name;
     1624              if ((!grep->nosizedupes && i->size == c->size && i->date.year == c->date.year && i->date.month == c->date.month && i->date.day == c->date.day && i->time.hours == c->time.hours && i->time.minutes == c->time.minutes && i->time.twosecs == c->time.twosecs) || !stricmp(pc, pi)) {       // potential dupe
     1625                if (grep->CRCdupes) {
     1626                  if (grep->CRCdupes) {
     1627                    if (c->CRC == -1L) {
     1628                      c->CRC = CRCFile(c->name, &error);
     1629                      if (error)
     1630                        c->CRC = -1L;
     1631                      else if (c->CRC == -1L)
     1632                        c->CRC = 0L;
     1633                    }
     1634                    if (i->CRC == -1L) {
     1635                      i->CRC = CRCFile(i->name, &error);
     1636                      if (error)
     1637                        i->CRC = -1L;
     1638                      else if (i->CRC == -1L)
     1639                        i->CRC = 0L;
     1640                    }
     1641                    if ((c->size != i->size) || (c->CRC != -1L &&
     1642                                                i->CRC != -1L
     1643                                                && c->CRC != i->CRC)) {
     1644                      c = c->next;
     1645                      continue;
     1646                    }
     1647                  }
     1648                }
     1649                if (AddToList(c->name, &list, &numfiles, &numalloced))
     1650                  goto BreakOut;        // Failed
     1651                if (!(i->flags & GF_INSERTED)) {
     1652                  if (AddToList(i->name, &list, &numfiles, &numalloced))
     1653                    goto BreakOut;      // Failed
     1654                }
     1655                if (grep->sayfiles) {
     1656                  if (!hwndStatus)
     1657                    WinSetWindowText(grep->hwndCurFile, pc);
     1658                  else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles)
     1659                    WinSetWindowText(hwndStatus, pc);
     1660                }
     1661                c->flags |= GF_INSERTED;
     1662                i->flags |= GF_INSERTED;
     1663                if (!stricmp(pc, pi)) {
     1664                  c->flags |= GF_SKIPME;
     1665                  i->flags |= GF_SKIPME;
     1666                }
     1667              }
     1668              // else if (!(x % 100))   // 07 Feb 08 SHL
     1669              //        DosSleep(0);  //26 Aug 07 GKY 1 // 07 Feb 08 SHL
     1670            }
     1671            c = c->next;
     1672          }
     1673        }
     1674        i = i->next;
    16561675      } // while
    16571676    }
     
    16611680  if (numfiles && list) {
    16621681    if (!PostMsg(grep->hwndFiles,
    1663                 WM_COMMAND,
    1664                 MPFROM2SHORT(IDM_COLLECTOR, 0),
    1665                 MPFROMP(list)))
     1682                WM_COMMAND,
     1683                MPFROM2SHORT(IDM_COLLECTOR, 0),
     1684                MPFROMP(list)))
    16661685      FreeList(list);
    16671686  }
  • TabularUnified trunk/dll/grep.h

    r1208 r1707  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2006, 2008 Steven H. Levine
     9  Copyright (c) 2006, 2014 Steven H. Levine
    1010
    1111  04 Nov 06 SHL Renames
    1212  15 Aug 07 SHL Drop obsoletes
    1313  04 Jan 08 SHL Allow standalone usage
     14  08 Feb 14 SHL Add ignoreSVN
    1415
    1516***********************************************************************/
     
    4849{
    4950  USHORT size;
    50   CHAR tosearch[8192];
     51  CHAR fileMasks[8192];                 // ; separated
    5152  CHAR fileMask[CCHMAXPATH + 14];
    5253  CHAR curdir[CCHMAXPATH];
     
    6364  BOOL finddupes;
    6465  BOOL CRCdupes;
     66  BOOL ignoreSVN;
    6567  BOOL nosizedupes;
    6668  BOOL ignoreextdupes;
  • TabularUnified trunk/dll/grep2.c

    r1544 r1707  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2004, 2010 Steven H. Levine
     9  Copyright (c) 2004, 2014 Steven H. Levine
    1010
    1111  01 Aug 04 SHL Rework lstrip/rstrip usage
     
    2727  08 Mar 09 GKY Additional strings move to PCSZs in init.c
    2828  07 Oct 09 SHL Remember last search mask across runs
    29   17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
    30 
    31   fixme for more excess locals to be gone
     29  17 Jan 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
     30  08 Feb 14 SHL Support svn git hg CVS etc. metadata directory ignore
     31
     32  FIXME for more excess locals to be gone
    3233
    3334***********************************************************************/
     
    184185}
    185186
     187/**
     188 * Add mask to mask list
     189 * If mask contains both path an wildcard components if is just appended
     190 * If mask contains only wildcard component, path is extracted from last mask in masks
     191 * If mask contains only path components, wildcard is extracted from last mask in masks
     192 * @param masks is semicolon separated mask string to be updated
     193 * @param newMask is mask to append
     194 * @note code limits mask length to 8192 to match GrepDlgProc
     195 * @returns true if OK
     196 */
     197
     198#if 0 // 2010-09-27 SHL FIXME to use
     199
     200static BOOL updateMaskString(CHAR masks[8192], PCSZ newMask)
     201{
     202  BOOL ok = TRUE;
     203  BOOL isPath;
     204  BOOL isWild;
     205  UINT len;
     206  CHAR mask[CCHMAXPATH + 2];            // 2 for semicolons
     207  CHAR wildcard[CCHMAXPATH];
     208  PSZ p;
     209
     210  // 2010-09-27 SHL FIXME to be globally available
     211  #define CH_QMARK '?'
     212  #define CH_STAR '*'
     213  #define CH_BACKSLASH '\\'
     214  #define CH_SEMICOLON ';'
     215  static PCSZ PCSZ_SEMICOLON = ";";     // 2010-09-27 SHL FIXME to be globally available from init.c
     216
     217  // Extract last mask
     218  len = strlen(masks);
     219  if (!len)
     220    *mask = 0;
     221  else {
     222    if (len < CCHMAXPATH + 2)
     223      strcpy(mask, masks);
     224    else {
     225      strcpy(mask, masks + len - (CCHMAXPATH + 1));
     226      len = strlen(mask);
     227    }
     228  }
     229  if (len) {
     230    p = mask + len - 1;
     231    if (*p == CH_SEMICOLON)
     232      *p = 0;                           // Chop trailing
     233    p = strrchr(mask, CH_SEMICOLON);    // Find last
     234    if (p)
     235      memmove(mask, p + 1, strlen(p + 1) + 1);  // Move to front
     236  }
     237
     238  isPath = strchr(newMask, CH_BACKSLASH) != NULL;       // 2010-09-27 SHL FIXME if test too weak
     239  // 2010-09-27 SHL FIXME to have function
     240  isWild = strchr(newMask, CH_STAR) || strchr(newMask, CH_QMARK);
     241
     242  // Assume ready to do if both path and wildcard otherwise edit
     243
     244  if (isPath && !isWild) {
     245    // Extract wildcard from old mask
     246    p = strrchr(mask, CH_BACKSLASH);
     247    if (!p)
     248      strcpy(wildcard, mask);
     249    else
     250      strcpy(wildcard, p + 1);
     251    // Append wildcard to path
     252    strcpy(mask, newMask);
     253    bstrip(mask);
     254    len = strlen(mask);
     255    if (len && mask[len - 1] != CH_BACKSLASH)
     256      strcat(mask, PCSZ_BACKSLASH);
     257    strcat(mask, wildcard);
     258  }
     259  else if (!isPath) {
     260    // Use path from old mask
     261    len = strlen(mask);
     262    p = strrchr(mask, CH_BACKSLASH);
     263    if (p)
     264      *(p + 1) = 0;
     265    else
     266      *mask = 0;                        // Assume just wilcard
     267    // Append new wildcard or filename
     268    strcat(mask, newMask);
     269    bstrip(mask);
     270  }
     271
     272  if (strlen(masks) + strlen(mask) + 3 > sizeof(masks))
     273    Runtime_Error(pszSrcFile, __LINE__, "too big");
     274
     275  // Append separator
     276  if (masks[strlen(masks) - 1] != CH_SEMICOLON)
     277    strcat(masks, PCSZ_SEMICOLON);
     278  // Append mask to list
     279  strcat(masks, mask);
     280
     281  return ok;
     282}
     283
     284#endif // 2010-09-27 SHL        FIXME to use
     285
    186286MRESULT EXPENTRY GrepDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    187287{
     
    200300  CHAR *moder = "r";
    201301
    202   // 07 Oct 09 SHL fixme to not be static and save to profile?
    203   static CHAR lastmask[8192];
    204   static CHAR lasttext[4096];
     302  static BOOL fInitDone;                // First time init done
     303  // 07 Oct 09 SHL FIXME to not be static
     304  // 07 Oct 09 SHL FIXME to save to profile?
     305  // GREP_FRAME dialog buffers
     306  static CHAR fileMasks[8192];          // ; separated
     307  static CHAR searchText[4096];         // Structured
    205308  static BOOL recurse = TRUE;
    206309  static BOOL sensitive;
     
    209312  static BOOL searchEAs = TRUE;
    210313  static BOOL searchFiles = TRUE;
    211   static BOOL changed;
    212   static BOOL fInitDone;                // First time init done
    213314  static BOOL findifany = TRUE;
    214   static BOOL gRemember;
     315  static BOOL rememberSettings;
    215316  static UINT newer = 0;
    216317  static UINT older = 0;
    217   static ULONG greater = 0;
    218   static ULONG lesser = 0;
     318  static ULONG greaterthan = 0;
     319  static ULONG lessthan = 0;
     320  static BOOL ignoreSVN;
     321
     322  static BOOL maskListChanged;
    219323  static SHORT sLastMaskSelect = LIT_NONE;
    220324
     
    227331    GrepInfo = mp2;
    228332    if (GrepInfo->szGrepPath && IsFile(GrepInfo->szGrepPath) == 0) {
    229       BldFullPathName(lastmask, GrepInfo->szGrepPath, "*");     // Directory passed
     333      BldFullPathName(fileMasks, GrepInfo->szGrepPath, "*");    // Directory passed
    230334      sLastMaskSelect = LIT_NONE;
    231335      fInitDone = TRUE;
     
    238342    }
    239343    if (!fInitDone) {
    240       lastmask[0] = '*';
    241       lastmask[1] = 0;
     344      fileMasks[0] = '*';
     345      fileMasks[1] = 0;
    242346    }
    243347
     
    260364                      GREP_LESSER,
    261365                      EM_SETTEXTLIMIT, MPFROM2SHORT(34, 0), MPVOID);
    262     WinSetDlgItemText(hwnd, GREP_MASK, lastmask);
     366    WinSetDlgItemText(hwnd, GREP_MASK, fileMasks);
    263367    WinSendDlgItemMsg(hwnd,
    264368                      GREP_MASK, EM_SETSEL, MPFROM2SHORT(0, 8192), MPVOID);
    265369    size = sizeof(BOOL);
    266370    PrfQueryProfileData(fmprof, FM3Str, "RememberFlagsGrep",
    267                         (PVOID) & gRemember, &size);
    268     WinCheckButton(hwnd, GREP_REMEMBERFLAGS, gRemember);
    269     if (gRemember) {
     371                        (PVOID) & rememberSettings, &size);
     372    WinCheckButton(hwnd, GREP_REMEMBERFLAGS, rememberSettings);
     373    if (rememberSettings) {
    270374      size = sizeof(BOOL);
    271375      PrfQueryProfileData(fmprof, FM3Str, "Grep_Recurse",
     
    287391                          (PVOID) & searchEAs, &size);
    288392    }
    289     if (!gRemember) {
     393    if (!rememberSettings) {
    290394      recurse = TRUE;
    291395      sensitive = FALSE;
    292396      absolute = FALSE;
    293397      sayfiles = TRUE;
     398      ignoreSVN = TRUE;
    294399      searchEAs = TRUE;
    295400      searchFiles = TRUE;
    296401    }
    297     WinSetWindowText(hwndMLE, lasttext);
    298     if (*lasttext) {
     402    WinSetWindowText(hwndMLE, searchText);
     403    if (*searchText) {
    299404      MLEsetcurpos(hwndMLE, 0);
    300405      MLEsetcurposa(hwndMLE, 4096);
     
    309414    WinCheckButton(hwnd, GREP_SEARCHFILES, searchFiles);
    310415    WinCheckButton(hwnd, GREP_FINDIFANY, findifany);
    311 
    312     sprintf(s, "%lu", greater);
     416    WinCheckButton(hwnd, GREP_IGNORESVN, ignoreSVN);
     417
     418    sprintf(s, "%lu", greaterthan);
    313419    WinSetDlgItemText(hwnd, GREP_GREATER, s);
    314     sprintf(s, "%lu", lesser);
     420    sprintf(s, "%lu", lessthan);
    315421    WinSetDlgItemText(hwnd, GREP_LESSER, s);
    316422    sprintf(s, "%u", newer);
     
    342448    //if (sLastMaskSelect >= 0)
    343449    //  WinSendDlgItemMsg(hwnd, GREP_LISTBOX, LM_SELECTITEM,
    344     //                  MPFROMSHORT(sLastMaskSelect), MPFROMSHORT(TRUE));
     450    //          MPFROMSHORT(sLastMaskSelect), MPFROMSHORT(TRUE));
    345451
    346452    FillPathListBox(hwnd,
    347453                    WinWindowFromID(hwnd, GREP_DRIVELIST),
    348454                    (HWND) 0, NULL, FALSE);
    349     // 25 Sep 09 SHL fixme select drive matching current container?
     455    // 25 Sep 09 SHL FIXME select drive matching current container?
    350456    break;
    351457
     
    369475    case GREP_REMEMBERFLAGS:
    370476      {
    371         BOOL gRemember = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS);
     477        BOOL rememberSettings = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS);
    372478
    373479        PrfWriteProfileData(fmprof, FM3Str, "RememberFlagsGrep",
    374                             (PVOID) & gRemember, sizeof(BOOL));
     480                            (PVOID) & rememberSettings, sizeof(BOOL));
    375481      }
    376482      break;
     
    389495        WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s);
    390496        bstrip(s);
     497        // Find last wildcard
    391498        p = strrchr(s, '\\');
    392499        if (p)
     
    400507          strcpy(simple, "\\*");
    401508        if (simple[strlen(simple) - 1] == ';')
    402           simple[strlen(simple) - 1] = 0;
     509          simple[strlen(simple) - 1] = 0;       // Chop trailing semi
    403510        lLen = strlen(simple) + 1;
    404511        if (strlen(s) > 8192 - lLen) {
     
    408515        }
    409516
     517        // 19 Aug 10 SHL FIXME to honor append
    410518        sSelect = (SHORT) WinSendDlgItemMsg(hwnd,
    411519                                            GREP_DRIVELIST,
     
    437545        break; // LN_ENTER
    438546      } // switch
    439       break;
     547      break; //GREP_DRIVELIST
    440548
    441549    case GREP_LISTBOX:
     
    450558      case LN_ENTER:
    451559      case LN_SELECT:
     560        // Enter checkbox controls whether or not notice is ignored
     561        // If not checked, enter is ignored because select has already been processed
     562        // If check, select is ignored and enter is processed
    452563        if ((SHORT2FROMMP(mp1) == LN_ENTER &&
    453564             !WinQueryButtonCheckstate(hwnd, GREP_APPEND)) ||
    454565            (SHORT2FROMMP(mp1) == LN_SELECT &&
    455566             WinQueryButtonCheckstate(hwnd, GREP_APPEND)))
    456           break;
     567          break;                        // Ignore
    457568        {
    458569          sSelect = (SHORT) WinSendDlgItemMsg(hwnd,
     
    464575            *s = 0;
    465576            if (WinQueryButtonCheckstate(hwnd, GREP_APPEND)) {
     577              // Append to existing
    466578              WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s);
    467579              bstrip(s);
     
    469581                strcat(s, ";");
    470582            }
     583            // Append listbox item to mask string
    471584            WinSendDlgItemMsg(hwnd,
    472585                              GREP_LISTBOX,
     
    481594        break;
    482595      }
    483       break;
     596      break; // GREP_LISTBOX
    484597
    485598    case GREP_MASK:
     
    623736                strcat(s, simple);
    624737                WinSetDlgItemText(hwnd, GREP_MASK, s);
     738                // 19 Aug 10 SHL FIXME to honor append
    625739                WinSendDlgItemMsg(hwnd,
    626740                                  GREP_MASK,
     
    677791          }
    678792          rstrip(s);
    679           // 25 Sep 09 SHL fixme to honor append
     793          // 25 Sep 09 SHL FIXME to honor append
    680794          if (*s) {
    681795            strcat(s, simple);
     
    706820                            LM_INSERTITEM,
    707821                            MPFROM2SHORT(LIT_SORTASCENDING, 0), MPFROMP(s));
    708           changed = TRUE;
     822          maskListChanged = TRUE;
    709823        }
    710824      }
     
    722836        if (sSelect >= sLastMaskSelect)
    723837          sLastMaskSelect--;
    724         changed = TRUE;
     838        maskListChanged = TRUE;
    725839      }
    726840      break;
     
    778892        INT x;
    779893        BOOL incl;
    780 
    781894        CHAR new[8192];
    782895
     896        // Find first mask
    783897        *s = 0;
    784898        WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s);
     
    796910        if (!*s)
    797911          strcpy(s, "*");
     912
    798913        DosError(FERR_DISABLEHARDERR);
    799914        DosQCurDisk(&ulDriveNum, &ulDriveMap);
     
    808923              break;
    809924            case GREP_LOCALHDS:
     925              // 06 Jun 10 SHL FIXME to work if drive not prescanned
    810926              if (!(driveflags[x] &
    811927                    (DRIVE_REMOVABLE | DRIVE_IGNORE | DRIVE_REMOTE |
     
    814930              break;
    815931            case GREP_REMOTEHDS:
    816               if (!(driveflags[x] &
    817                     (DRIVE_REMOVABLE | DRIVE_IGNORE)) &&
     932              if (!(driveflags[x] & (DRIVE_REMOVABLE | DRIVE_IGNORE)) &&
    818933                  (driveflags[x] & DRIVE_REMOTE))
    819934                incl = TRUE;
     
    841956        Runtime_Error(pszSrcFile, __LINE__, NULL);
    842957      else {
    843         // 07 Feb 08 SHL - fixme to malloc and free in thread
     958        // 07 Feb 08 SHL - FIXME to malloc and free in thread
    844959        static GREP g;                  // Passed to thread
    845960        p = xmalloc(8192 + 512, pszSrcFile, __LINE__);
    846961        if (!p)
    847           break;
     962          break;                        // Already complained
    848963        memset(&g, 0, sizeof(GREP));
    849964        g.size = sizeof(GREP);
     
    855970        searchFiles = WinQueryButtonCheckstate(hwnd, GREP_SEARCHFILES) != 0;
    856971        findifany = WinQueryButtonCheckstate(hwnd, GREP_FINDIFANY) != 0;
    857         gRemember = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS);
    858         if (gRemember) {
     972        ignoreSVN = WinQueryButtonCheckstate(hwnd, GREP_IGNORESVN) != 0;
     973        rememberSettings = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS);
     974        if (rememberSettings) {
    859975          PrfWriteProfileData(fmprof, FM3Str, "Grep_Recurse",
    860976                              (PVOID) & recurse, sizeof(BOOL));
     
    8891005          WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, GREP_MASK));
    8901006          free(p);
    891 #         ifdef FORTIFY
     1007#         ifdef FORTIFY
    8921008          Fortify_LeaveScope();
    893 #          endif
     1009#          endif
    8941010          break;
    8951011        }
    896         strcpy(g.tosearch, p);
    897         strcpy(lastmask, p);
     1012        strcpy(g.fileMasks, p);
     1013        strcpy(fileMasks, p);
    8981014        // Parse search strings
    8991015        *p = 0;
    9001016        WinQueryWindowText(hwndMLE, 4096, p);
    901         strcpy(lasttext, p);
     1017        strcpy(searchText, p);
    9021018        {
    9031019          CHAR *pszFrom;
     
    9351051        *p = 0;
    9361052        WinQueryDlgItemText(hwnd, GREP_GREATER, 34, p);
    937         greater = atol(p);
     1053        greaterthan = atol(p);
    9381054        *p = 0;
    9391055        WinQueryDlgItemText(hwnd, GREP_LESSER, 34, p);
    940         lesser = atol(p);
     1056        lessthan = atol(p);
    9411057        *p = 0;
    9421058        WinQueryDlgItemText(hwnd, GREP_NEWER, 34, p);
     
    9721088        if (!older)
    9731089          g.olderthan = 0;
    974         g.greaterthan = greater;
    975         g.lessthan = lesser;
     1090        g.greaterthan = greaterthan;
     1091        g.lessthan = lessthan;
    9761092        g.absFlag = absolute;
    9771093        g.caseFlag = sensitive;
     
    9811097        g.searchFiles = searchFiles;
    9821098        g.findifany = findifany;
     1099        g.ignoreSVN = ignoreSVN;
     1100
    9831101        g.hwndFiles = hwndCollect;
    9841102        g.hwnd = WinQueryWindow(hwndCollect, QW_PARENT);
    9851103        g.hwndCurFile = WinWindowFromID(g.hwnd, DIR_SELECTED);
     1104
     1105        // Get settings from collector filter
    9861106        g.attrFile = ((DIRCNRDATA *)INSTDATA(hwndCollect))->mask.attrFile;
    9871107        g.antiattr = ((DIRCNRDATA *)INSTDATA(hwndCollect))->mask.antiattr;
    9881108        g.stopflag = &((DIRCNRDATA *)INSTDATA(hwndCollect))->stopflag;
     1109
     1110        if (rememberSettings) {
     1111          PrfWriteProfileData(fmprof, FM3Str, "Grep_Recurse",
     1112                              (PVOID) & recurse, sizeof(BOOL));
     1113          PrfWriteProfileData(fmprof, FM3Str, "Grep_Absolute",
     1114                              (PVOID) & absolute, sizeof(BOOL));
     1115          PrfWriteProfileData(fmprof, FM3Str, "Grep_Case",
     1116                              (PVOID) & sensitive, sizeof(BOOL));
     1117          PrfWriteProfileData(fmprof, FM3Str, "Grep_Sayfiles",
     1118                              (PVOID) & sayfiles, sizeof(BOOL));
     1119          PrfWriteProfileData(fmprof, FM3Str, "Grep_Searchfiles",
     1120                              (PVOID) & searchFiles, sizeof(BOOL));
     1121          PrfWriteProfileData(fmprof, FM3Str, "Grep_SearchfEAs",
     1122                              (PVOID) & searchEAs, sizeof(BOOL));
     1123        }
     1124
    9891125        if (xbeginthread(GrepThread,
    9901126                         524280,
     
    9941130        {
    9951131          free(p);
    996 #         ifdef FORTIFY
     1132#         ifdef FORTIFY
    9971133          Fortify_LeaveScope();
    998 #          endif
     1134#          endif
    9991135          WinDismissDlg(hwnd, 0);
    10001136          break;
    10011137        }
    1002         DosSleep(100); //05 Aug 07 GKY 128
     1138        DosSleep(100);                  //05 Aug 07 GKY 128
    10031139        free(p);
    1004 #       ifdef FORTIFY
     1140#       ifdef FORTIFY
    10051141        Fortify_LeaveScope();
    1006 #        endif
    1007       }
    1008       if (changed) {
     1142#        endif
     1143      }
     1144      if (maskListChanged) {
    10091145        // Save modified mask list
    10101146        SHORT x;
     
    10151151                                            MPVOID, MPVOID);
    10161152        // 07 Oct 09 SHL Rewrite if list empty
    1017         if (sSelect >= 0) {
    1018           CHAR *modew = "w";
     1153        if (sSelect >= 0) {
     1154          CHAR *modew = "w";
    10191155
    10201156          BldFullPathName(s, pFM2SaveDirectory, PCSZ_GREPMASKDAT);
Note: See TracChangeset for help on using the changeset viewer.