src/hg/instinct/lib/json.c 1.3

1.3 2009/03/29 04:08:52 jsanborn
fixed another bug
Index: src/hg/instinct/lib/json.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/lib/json.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 4 -r1.2 -r1.3
--- src/hg/instinct/lib/json.c	29 Mar 2009 03:30:43 -0000	1.2
+++ src/hg/instinct/lib/json.c	29 Mar 2009 04:08:52 -0000	1.3
@@ -217,12 +217,12 @@
 
 /* Append objects in container (whatever they may be) to growing string */
 void appendObjects(struct jsonObject *joList, struct dyString *dy)
 {
-if (!joList)
-    return;
-
+//if (!joList)
+//    return;
 dyStringPrintf(dy, "{");
+
 struct jsonObject *jo;
 for (jo = joList; jo; jo = jo->next)
     {
     jo->appendVal(jo, dy);