pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2018-01-19
2018-01-19 16:14:39 by Martin Nilsson <nilsson@fastmail.com>
2d2105467236f8106f051aaeca065feff3d156cb (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
master
Use the ALLOC_STRUCT macro when possible.
1118:
else { num_catch_ctx++;
-
res =
xalloc
(
sizeof( struct
catch_context )
)
;
+
res =
ALLOC_STRUCT
( catch_context );
} return res; }