[BACK]Return to varmodifiers.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/varmodifiers.c between version 1.46 and 1.47

version 1.46, 2017/02/24 23:38:47 version 1.47, 2017/07/10 07:10:29
Line 1517 
Line 1517 
                 } else {                  } else {
                         Error("Bad modifier: %s", tstr);                          Error("Bad modifier: %s", tstr);
                         /* Try skipping to end of var... */                          /* Try skipping to end of var... */
                         for (tstr++; *tstr != endc && *tstr != '\0';)                          while (*tstr != endc && *tstr != '\0')
                                 tstr++;                                  tstr++;
                         if (str != NULL && *freePtr)                          if (str != NULL && *freePtr)
                                 free(str);                                  free(str);

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47