84da2bc49505cf703f226e0d4fc8cb33b5911d8d braney Wed Sep 3 11:12:55 2014 -0700 up the size of a buffer diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 91b6e9d..d92da3d 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -3834,31 +3834,31 @@ indent = hierarchy->indents[iIx]; break; // Only one } } } for (;indent>0;indent--) puts(" "); } // FIXME FIXME Should be able to use membersForAll struct to set default sort order from subGroups // FIXME FIXME This should be done in hgTrackDb at load time and should change tag values to // FIXME FIXME ensure js still works boolean tdbAddPrioritiesFromCart(struct cart *cart, struct trackDb *tdbList) // Updates the tdb->priority from cart for all tracks in list and their descendents. { -char htmlIdentifier[128]; +char htmlIdentifier[1024]; struct trackDb *tdb; boolean cartPriorities = FALSE; for (tdb = tdbList; tdb != NULL; tdb = tdb->next) { safef(htmlIdentifier, sizeof(htmlIdentifier), "%s.priority", tdb->track); char *cartHas = cartOptionalString(cart,htmlIdentifier); if (cartHas != NULL) { tdb->priority = atof(cartHas); cartPriorities = TRUE; } if (tdbAddPrioritiesFromCart(cart, tdb->subtracks)) cartPriorities = TRUE; } return cartPriorities;