90dc829b2d87b15c4fc4bbc1d814f83d1274ef52 braney Fri Sep 4 14:00:05 2026 -0700 Pass element counts, not byte sizes, to the chop routines chopByWhite, chopString and chopByChar take their last argument as a count of elements in the output array. Fifteen call sites passed sizeof(array) instead. For an array of pointers that is eight times the real capacity on a 64-bit build, so the chop could write well past the end of the array. Switched each to ArraySize(). Behaviour is unchanged for any input that already fitted in the array. Built clean: lib, hg/lib, hg/hgTracks, hg/hgc, hg/utils/hubCheck, utils/bedScore, parasol/lib, parasol/parasol. Three directories do not build, but they fail the same way without this change: checkExp is missing htslib link flags, and cgapSageFind and affySplice have stale prototypes in files this does not touch. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> diff --git src/hg/makeDb/outside/cgapSage/cgapSageFind/uninteresting.c src/hg/makeDb/outside/cgapSage/cgapSageFind/uninteresting.c index cb00743c8c3..f0acf410875 100644 --- src/hg/makeDb/outside/cgapSage/cgapSageFind/uninteresting.c +++ src/hg/makeDb/outside/cgapSage/cgapSageFind/uninteresting.c @@ -89,28 +89,28 @@ struct slPair **pList = (struct slPair **)pEl; slPairFreeList(pList); } int pickApartSeqName(char **pName) /* Change /path/chr:start-end into chr and return start. */ { char *name; char *words[3]; int numWords = 0; char *chrom, *range; int skip = 0; int start = 0; if (!pName || ((name = *pName) == NULL)) return 0; -numWords = chopByChar(name, ':', words, sizeof(words)); +numWords = chopByChar(name, ':', words, ArraySize(words)); if (numWords == 3) skip = 1; chrom = words[0 + skip]; *pName = chrom; range = words[1 + skip]; if (numWords > 1) { chopPrefixAt(range, '-'); start = sqlUnsigned(range); } return start; }