Index: uspace/srv/devman/devman.c
===================================================================
--- uspace/srv/devman/devman.c	(revision 40dc4226a1988bd7570910388f1d32d5f365f2ea)
+++ uspace/srv/devman/devman.c	(revision f568ee7ca6382a57f76ee8c0cb5ff31f8955baf1)
@@ -133,4 +133,12 @@
 	printf(NAME": the '%s' driver was added to the list of available "
 	    "drivers.\n", drv->name);
+
+	printf(NAME ": match ids:");
+	link_t *cur;
+	for (cur = drv->match_ids.ids.next; cur != &drv->match_ids.ids; cur = cur->next) {
+		match_id_t *match_id = list_get_instance(cur, match_id_t, link);
+		printf(" %d:%s", match_id->score, match_id->id);
+	}
+	printf("\n");
 }
 
Index: uspace/srv/net/tl/udp/udp.c
===================================================================
--- uspace/srv/net/tl/udp/udp.c	(revision 40dc4226a1988bd7570910388f1d32d5f365f2ea)
+++ uspace/srv/net/tl/udp/udp.c	(revision f568ee7ca6382a57f76ee8c0cb5ff31f8955baf1)
@@ -711,5 +711,5 @@
 	int socket_id;
 	size_t addrlen;
-	size_t size;
+	size_t size = 0;
 	ipc_call_t answer;
 	int answer_count;
