BSSMAP_Emulation: handle zero-length L3 Info in f_bssap_l3_is_rr()

Change-Id: I5666911d67388347d04724635cf6f56e164a82f8
diff --git a/library/BSSMAP_Emulation.ttcn b/library/BSSMAP_Emulation.ttcn
index 5f8fe4f..2d9effc 100644
--- a/library/BSSMAP_Emulation.ttcn
+++ b/library/BSSMAP_Emulation.ttcn
@@ -464,6 +464,9 @@
 		return false;
 	}
 	var octetstring l3v := valueof(l3);
+	if (lengthof(l3v) < 1) {
+		return false;
+	}
 	/* lower 4 bits of first octet are protocol discriminator */
 	if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
 		return true;