Index: Open-ILS/src/c-apps/oils_fetch.c
===================================================================
--- Open-ILS/src/c-apps/oils_fetch.c	(revision 7851)
+++ Open-ILS/src/c-apps/oils_fetch.c	(working copy)
@@ -50,7 +50,6 @@
 		osrfHashSet( fmClassMap, hint, apiname );
 
 		char method[256];
-		bzero(method, 256);
 		snprintf(method, 256, "open-ils.fetch.%s.retrieve", apiname);
 
 		osrfAppRegisterMethod( MODULENAME, 
@@ -129,13 +128,11 @@
 
 	/* construct the SQL */
 	char sql[256];
-	bzero(sql, 256);
-	snprintf( sql, 255, "select * from %s.%s where id = %s;", schema, object, id );
+	snprintf( sql, 256, "select * from %s.%s where id = %s;", schema, object, id );
 
 	/* find the object hint from the api name */
 	char hintbuf[256];
-	bzero(hintbuf,256);
-	snprintf(hintbuf, 255, "%s.%s", schema, object );
+	snprintf(hintbuf, 256, "%s.%s", schema, object );
 	char* hint = osrfHashGet( fmClassMap, hintbuf );
 
 	osrfLogDebug(OSRF_LOG_MARK, "%s SQL =  %s", MODULENAME, sql);
Index: Open-ILS/src/c-apps/oils_utils.c
===================================================================
--- Open-ILS/src/c-apps/oils_utils.c	(revision 7851)
+++ Open-ILS/src/c-apps/oils_utils.c	(working copy)
@@ -189,8 +189,7 @@
 	char* seed = jsonObjectGetString(o);
 	char* passhash = md5sum(passwd);
 	char buf[256];
-	bzero(buf, 256);
-	snprintf(buf, 255, "%s%s", seed, passhash);
+	snprintf(buf, 256, "%s%s", seed, passhash);
 	char* fullhash = md5sum(buf);
 
 	jsonObjectFree(o);
