6613062f154cfa6016ae4ef3c9323c4a12133acc braney Fri Jun 21 18:23:35 2013 -0700 make a small buffer bigger diff --git src/hg/lib/hdb.c src/hg/lib/hdb.c index 1a2bd8f..01a680c 100644 --- src/hg/lib/hdb.c +++ src/hg/lib/hdb.c @@ -1817,31 +1817,31 @@ struct bed *hGetCtBedRange(char *db, char *browserDb, char *table, char *chrom, int chromStart, int chromEnd, char *sqlConstraints) /* Return a bed list of all items (that match sqlConstraints, if nonNULL) * in the given range in table. If chromEnd is 0, omit the range (whole chrom). * WARNING: this does not use the bin column and maybe slower than you would like. */ { struct dyString *query = newDyString(512); struct sqlConnection *conn = hAllocConn(db); struct sqlResult *sr; struct hTableInfo *hti; struct bed *bedList=NULL, *bedItem; char **row; char parsedChrom[HDB_MAX_CHROM_STRING]; char rootName[256]; char fullTableName[256]; -char rangeStr[32]; +char rangeStr[1024]; int count; boolean canDoUTR, canDoIntrons; boolean useSqlConstraints = sqlConstraints != NULL && sqlConstraints[0] != 0; char tStrand = '?', qStrand = '?'; int i; boolean gotWhere = FALSE; /* Caller can give us either a full table name or root table name. */ if (browserDb) hParseTableName(browserDb, table, rootName, parsedChrom); else hParseTableName(db, table, rootName, parsedChrom); hti = hFindTableInfo(db, chrom, rootName); if (hti == NULL) errAbort("Could not find table info for table %s (%s)",