BSSGP: Avoid unbound length integer in IE template
diff --git a/gprs_gb/BSSGP_Types.ttcn b/gprs_gb/BSSGP_Types.ttcn
index e084b0e..c97b78b 100644
--- a/gprs_gb/BSSGP_Types.ttcn
+++ b/gprs_gb/BSSGP_Types.ttcn
@@ -396,6 +396,7 @@
 
 	template BssgpTLV t_BssgpIE(template BssgpIEI iei, template BssgpIeUnion u) := {
 		iei := iei,
+		len := 0,
 		u := u
 	}