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

Diff for /src/usr.bin/at/parsetime.c between version 1.22 and 1.23

version 1.22, 2015/03/17 19:31:30 version 1.23, 2015/08/20 22:32:41
Line 180 
Line 180 
         while (argc-- > 0)          while (argc-- > 0)
                 sc_len += strlen(*argv++);                  sc_len += strlen(*argv++);
   
         if ((sc_token = (char *) malloc(sc_len)) == NULL) {          if ((sc_token = malloc(sc_len)) == NULL) {
                 fprintf(stderr, "%s: Insufficient virtual memory\n",                  fprintf(stderr, "%s: Insufficient virtual memory\n",
                     ProgramName);                      ProgramName);
                 return (-1);                  return (-1);

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23