You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unsigned intmapsize=tablelen+nuniq; // lto compilation warning #5760 // +nuniq to store a 0 at the end of each group
118
-
int*counts=calloc(nuniq, sizeof(*counts));
119
-
int*map=calloc(mapsize, sizeof(*map));
120
-
if (!counts|| !map) {
121
-
// # nocov start
122
-
free(counts); free(map);
123
-
error(_("Failed to allocate %"PRIu64" bytes working memory in chmatchdup: length(table)=%d length(unique(table))=%d"), ((uint64_t)tablelen*2+nuniq)*sizeof(int), tablelen, nuniq);
0 commit comments