Index: uspace/app/taskdump/fibrildump.c
===================================================================
--- uspace/app/taskdump/fibrildump.c	(revision 8c7d5adf6864144540bbcdd88ca84f925dab4e02)
+++ uspace/app/taskdump/fibrildump.c	(revision 1619faa28e6911344d7aea822650ebf41044c395)
@@ -81,4 +81,12 @@
 	int rc;
 
+	/* 
+	 * If we for whatever reason could not obtain symbols table from the binary,
+	 * we cannot dump fibrils.
+	 */
+	if (symtab == NULL) {
+		return EIO;
+	}
+
 	rc = symtab_name_to_addr(symtab, "fibril_list", &fibril_list_addr);
 	if (rc != EOK)
