fix segfault in rrlp code in case of unsuccessful paging

PAGING_COMPLETED can be signalled without an active lchan in
case it was unable to page the repsective subscriber.
diff --git a/openbsc/src/rrlp.c b/openbsc/src/rrlp.c
index 60ce750..d4665d5 100644
--- a/openbsc/src/rrlp.c
+++ b/openbsc/src/rrlp.c
@@ -90,6 +90,10 @@
 
 	switch (signal) {
 	case S_PAGING_COMPLETED:
+		/* paging might have "completed' unsucessfully,
+		 * in this case we don't have a lchan */
+		if (!psig_data->lchan)
+			break;
 		/* A subscriber has attached. */
 		send_rrlp_req(psig_data->lchan);
 		break;