080a160c7b9595d516c9c70e83689a09b60839d0
galt
  Mon Jun 3 12:16:53 2013 -0700
fix SQL Injection
diff --git src/hg/lib/snpMap.c src/hg/lib/snpMap.c
index 3a82933..27e31d3 100644
--- src/hg/lib/snpMap.c
+++ src/hg/lib/snpMap.c
@@ -89,66 +89,39 @@
 while ((row = sqlNextRow(sr)) != NULL)
     {
     el = snpMapLoad(row);
     slAddHead(&list, el);
     }
 slReverse(&list);
 sqlFreeResult(&sr);
 return list;
 }
 
 void snpMapSaveToDb(struct sqlConnection *conn, struct snpMap *el, char *tableName, int updateSize)
 /* Save snpMap as a row to the table specified by tableName. 
  * As blob fields may be arbitrary size updateSize specifies the approx size
  * of a string that would contain the entire query. Arrays of native types are
  * converted to comma separated strings and loaded as such, User defined types are
- * inserted as NULL. Note that strings must be escaped to allow insertion into the database.
- * For example "autosql's features include" --> "autosql\'s features include" 
- * If worried about this use snpMapSaveToDbEscaped() */
+ * inserted as NULL. Strings are automatically escaped to allow insertion into the database. */
 {
 struct dyString *update = newDyString(updateSize);
-dyStringPrintf(update, "insert into %s values ( '%s',%u,%u,'%s','%s','%s')", 
+sqlDyStringPrintf(update, "insert into %s values ( '%s',%u,%u,'%s','%s','%s')", 
 	tableName,  el->chrom,  el->chromStart,  el->chromEnd,  el->name,  el->source,  el->type);
 sqlUpdate(conn, update->string);
 freeDyString(&update);
 }
 
-void snpMapSaveToDbEscaped(struct sqlConnection *conn, struct snpMap *el, char *tableName, int updateSize)
-/* Save snpMap as a row to the table specified by tableName. 
- * As blob fields may be arbitrary size updateSize specifies the approx size.
- * of a string that would contain the entire query. Automatically 
- * escapes all simple strings (not arrays of string) but may be slower than snpMapSaveToDb().
- * For example automatically copies and converts: 
- * "autosql's features include" --> "autosql\'s features include" 
- * before inserting into database. */ 
-{
-struct dyString *update = newDyString(updateSize);
-char  *chrom, *name, *source, *type;
-chrom = sqlEscapeString(el->chrom);
-name = sqlEscapeString(el->name);
-source = sqlEscapeString(el->source);
-type = sqlEscapeString(el->type);
-
-dyStringPrintf(update, "insert into %s values ( '%s',%u,%u,'%s','%s','%s')", 
-	tableName,  chrom, el->chromStart , el->chromEnd ,  name,  source,  type);
-sqlUpdate(conn, update->string);
-freeDyString(&update);
-freez(&chrom);
-freez(&name);
-freez(&source);
-freez(&type);
-}
 
 struct snpMap *snpMapCommaIn(char **pS, struct snpMap *ret)
 /* Create a snpMap out of a comma separated string. 
  * This will fill in ret if non-null, otherwise will
  * return a new snpMap */
 {
 char *s = *pS;
 
 if (ret == NULL)
     AllocVar(ret);
 ret->chrom = sqlStringComma(&s);
 ret->chromStart = sqlUnsignedComma(&s);
 ret->chromEnd = sqlUnsignedComma(&s);
 ret->name = sqlStringComma(&s);
 ret->source = sqlStringComma(&s);