Index: uspace/lib/c/rtld/dynamic.c
===================================================================
--- uspace/lib/c/rtld/dynamic.c	(revision 0e9b512035036713c382370cb570a3881afa4209)
+++ uspace/lib/c/rtld/dynamic.c	(revision 628d54881527fd56ebbd9f4472bfe2e0e702a312)
@@ -53,5 +53,5 @@
 
 	DPRINTF("memset\n");
-	memset(info, 0, sizeof(info));
+	memset(info, 0, sizeof(dyn_info_t));
 
 	soname_idx = 0;
@@ -62,4 +62,6 @@
 		d_ptr = (void *)((uint8_t *)dp->d_un.d_ptr + bias);
 		d_val = dp->d_un.d_val;
+		DPRINTF("tag=%u ptr=0x%x val=%u\n", (unsigned)dp->d_tag,
+			(unsigned)d_ptr, (unsigned)d_val);
 
 		switch (dp->d_tag) {
@@ -108,4 +110,8 @@
 	DPRINTF("rpath='%s'\n", info->rpath);
 	DPRINTF("hash=0x%x\n", (uintptr_t)info->hash);
+	DPRINTF("dt_rela=0x%x\n", (uintptr_t)info->rela);
+	DPRINTF("dt_rela_sz=0x%x\n", (uintptr_t)info->rela_sz);
+	DPRINTF("dt_rel=0x%x\n", (uintptr_t)info->rel);
+	DPRINTF("dt_rel_sz=0x%x\n", (uintptr_t)info->rel_sz);
 
 	/*
