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

Diff for /src/usr.bin/cdio/cddb.c between version 1.12 and 1.13

version 1.12, 2007/05/01 01:26:12 version 1.13, 2007/09/02 15:19:31
Line 329 
Line 329 
                 }                  }
         } else if (strcmp(line, "200") != 0 || !further_query(cout, type))          } else if (strcmp(line, "200") != 0 || !further_query(cout, type))
                 goto end;                  goto end;
         result = malloc(sizeof(char *) * (n + 1));          result = calloc(sizeof(char *), n + 1);
         if (!result)          if (!result)
                 goto end;                  goto end;
         for (i = 0; i <= n; i++)          for (i = 0; i <= n; i++)

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13