From 5e14dddb6c58fec2bba8862538d8689332fefecb Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 23 Jan 1989 16:52:22 +0000 Subject: [PATCH] fix in compile time int2float conversion --- lang/cem/cemcom/arith.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/cem/cemcom/arith.c b/lang/cem/cemcom/arith.c index 5632e84e4..234cc5d58 100644 --- a/lang/cem/cemcom/arith.c +++ b/lang/cem/cemcom/arith.c @@ -282,7 +282,7 @@ int2float(expp, tp) exp = *expp; exp->ex_type = tp; exp->ex_class = Float; - exp->FL_VALUE = Salloc(buf, (unsigned)strlen(buf)+1) + 1; + exp->FL_VALUE = Salloc(buf, (unsigned)strlen(buf)+2) + 1; exp->FL_DATLAB = 0; } else *expp = arith2arith(tp, INT2FLOAT, *expp); -- 2.34.1