bsc_msc: Fix possible null pointer dereference

In case the allocation of con is failing, do not attempt to
print con->name as this will be a null pointer dereference.

Fixes: Coverity CID 1076318
diff --git a/openbsc/src/libbsc/bsc_msc.c b/openbsc/src/libbsc/bsc_msc.c
index c8cdce0..1a0f78a 100644
--- a/openbsc/src/libbsc/bsc_msc.c
+++ b/openbsc/src/libbsc/bsc_msc.c
@@ -226,9 +226,7 @@
 
 	con = talloc_zero(NULL, struct bsc_msc_connection);
 	if (!con) {
-		LOGP(DMSC, LOGL_FATAL,
-			"Failed to create the MSC(%s) connection.\n",
-			con->name);
+		LOGP(DMSC, LOGL_FATAL, "Failed to create the MSC connection.\n");
 		return NULL;
 	}