src/hg/hgTables/gffOut.c 1.19

1.19 2010/02/05 06:48:54 angie
Fixed too-small char[] size, found by Ann w/ENCODE tracks w/giant names, RT 1621.
Index: src/hg/hgTables/gffOut.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/gffOut.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -b -B -U 4 -r1.18 -r1.19
--- src/hg/hgTables/gffOut.c	16 Apr 2009 18:22:01 -0000	1.18
+++ src/hg/hgTables/gffOut.c	5 Feb 2010 06:48:54 -0000	1.19
@@ -243,9 +243,9 @@
 {
 struct hTableInfo *hti = getHti(database, table, conn);
 struct bed *bedList;
 struct gffLine *gffList, *gffPtr;
-char source[64];
+char source[HDB_MAX_TABLE_STRING];
 int itemCount;
 boolean gtf2StopCodons = FALSE;
 struct region *region, *regionList = getRegions();