pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2013-08-01
2013-08-01 17:02:42 by Arne Goedeke <el@laramies.com>
01f9142102feb6c36fa43b09f76895b236bac9fb (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
initialize pike_frame->num_args even in special cases
2807:
if(of && of->locals) { /* f->num_args can be too large, so this is necessary for some
-
* reason. I don't know why. /mast */
+
* reason. I don't know why. /mast
+
*
+
* possibly because f->num_args was uninitialized for c_initializers
+
*
/
arne
+
* */
+
numargs = DO_NOT_WARN((INT32)MINIMUM(f->num_args,of->locals - f->locals)); }