IPA_Emulation. Fix error if IPAC_MSGT_ID_GET with no tags is received

Change-Id: I69cd519cb3b8f10d10b4724e6354d31d5c5b9da5
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 0cd7314..7a8e8d6 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -415,6 +415,11 @@
 		}
 	}
 
+	/* If no Tags were present in the received IPA message, .u = omit */
+	if (not ispresent(get.u)) {
+		return resp;
+	}
+
 	for (i := 0; i < sizeof(get.u.get); i := i + 1) {
 		var IpaCcmIdTag tag := get.u.get[i].tag;
 		var charstring foo;