a274c7f6c7c7143088b0c636ccfea7c22e90f3f8
tdreszer
  Tue Oct 12 12:20:13 2010 -0700
Shouldn't hash a var that will be freed by others
diff --git src/hg/lib/web.c src/hg/lib/web.c
index 8dd0080..34fc684 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -1310,7 +1310,7 @@
 
 char * link = webTimeStampedLinkToResource(fileName,wrapInHtml);
 if (link)
-    hashAdd(includedResourceFiles, fileName, link);
+    hashAdd(includedResourceFiles, fileName, NULL);  // Don't hash link, because memory will be freed by caller!!!
 return link;
 }