[ospf6d] Fix ospf6d crash in show border routers

ospf6d will crash if this command is executed on a non-border-router.
Included test to verify that any routes are defined, preventing empty
pointer from being used.
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c
index 7a766c8..bb091d4 100644
--- a/ospf6d/ospf6d.c
+++ b/ospf6d/ospf6d.c
@@ -1647,6 +1647,12 @@
 
       ospf6_linkstate_prefix (adv_router, 0, &prefix);
       ro = ospf6_route_lookup (&prefix, ospf6->brouter_table);
+      if (!ro)
+        {
+          vty_out (vty, "No Route found for Router ID: %s%s", argv[0], VNL);
+          return CMD_SUCCESS;
+        }
+
       ospf6_route_show_detail (vty, ro);
       return CMD_SUCCESS;
     }