pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-12-04
2014-12-04 19:23:56 by Arne Goedeke <el@laramies.com>
4a0ea943abd66b3e9d5720cad40388ea3e6517d2 (
8
lines) (+
7
/-
1
)
[
Show
|
Annotate
]
Branch:
bill/master_archive_support
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)); }