From b86929df1242eaf28bfce2702fe6cca60d5b8e92 Mon Sep 17 00:00:00 2001
From: Botond Baranyi <botond.baranyi@ericsson.com>
Date: Mon, 10 Feb 2020 17:14:40 +0100
Subject: [PATCH] Fixed issue with unnamed temporary object (bug 559978)

Change-Id: I257465182b1d6bfcbe1598d2c1c5f121c95e12e0
Signed-off-by: Botond Baranyi <botond.baranyi@ericsson.com>
---
 compiler2/ttcn3/Statement.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler2/ttcn3/Statement.cc b/compiler2/ttcn3/Statement.cc
index dd5764afe..bb61d8f94 100644
--- a/compiler2/ttcn3/Statement.cc
+++ b/compiler2/ttcn3/Statement.cc
@@ -5740,7 +5740,7 @@ error:
   Type *Statement::chk_signature_ref(Reference *p_ref)
   {
     if (!p_ref) FATAL_ERROR("Statement::chk_signature_ref()");
-    Error_Context(p_ref, "In signature");
+    Error_Context cntxt(p_ref, "In signature");
     Common::Assignment *t_ass = p_ref->get_refd_assignment();
     if (!t_ass) return 0;
     if (t_ass->get_asstype() != Common::Assignment::A_TYPE) {
-- 
GitLab