pike.git/
src/
las.c
Branch:
Tag:
Non-build tags
All tags
No tags
2006-01-09
2006-01-09 13:16:44 by Henrik Grubbström (Grubba) <grubba@grubba.org>
67a8ce9466d8a95cdef39c91e981c7608aa61e39 (
10
lines) (+
6
/-
4
)
[
Show
|
Annotate
]
Branch:
7.9
Bugfix for LysLysKOM 14009036.
Rev: src/las.c:1.371
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: las.c,v 1.
370
2005
/
09/
01 13:
44
:
51
grubba Exp $
+
|| $Id: las.c,v 1.
371
2006
/
01/
09 13:
16:
44 grubba Exp $
*/ #include "global.h"
3484:
if (!CAR(n) || (CAR(n)->type == void_type_string)) { yyerror("Assigning a void expression."); copy_pike_type(n->type, void_type_string);
-
break;
-
}
else
if
(
CAR(
n
)
&& CDR
(n)) {
+
}
else
if (!CDR(n)) {
+
copy_pike_type
(n
->type,
CAR
(n)
->type
)
;
+
} else
{
/* Ensure that the type-fields are up to date. */ fix_type_field(CAR(n)); fix_type_field(CDR(n));
3517:
free_string(t1); } }
-
}
+
n->type = and_pike_types(CAR(n)->type, CDR(n)->type);
-
+
}
break; case F_ARRAY_LVALUE: