Hello,
this change has to be pushed to the upstream project, otheriwse with the next sync it is going to be lost -- we do not maintain the code of squirrel interpreter, it is used as an embedded library. The project is at:
* https://github.com/albertodemichelis/squirrel
Cheers, Daniel
On 23.11.19 18:54, Henning Westerholt wrote:
Module: kamailio Branch: master Commit: 7fad9c51f71854e0649fe76e273190e4b4f82438 URL: https://github.com/kamailio/kamailio/commit/7fad9c51f71854e0649fe76e273190e4...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2019-11-23T18:53:17+01:00
app_sqlang: fix squirrel warning: ‘nArgs’ may be used uninitialized in this function
Modified: src/modules/app_sqlang/squirrel/squirrel/sqbaselib.cpp
Diff: https://github.com/kamailio/kamailio/commit/7fad9c51f71854e0649fe76e273190e4... Patch: https://github.com/kamailio/kamailio/commit/7fad9c51f71854e0649fe76e273190e4...
diff --git a/src/modules/app_sqlang/squirrel/squirrel/sqbaselib.cpp b/src/modules/app_sqlang/squirrel/squirrel/sqbaselib.cpp index f3b8103185..fb6545f921 100644 --- a/src/modules/app_sqlang/squirrel/squirrel/sqbaselib.cpp +++ b/src/modules/app_sqlang/squirrel/squirrel/sqbaselib.cpp @@ -625,7 +625,7 @@ static SQInteger __map_array(SQArray *dest,SQArray *src,HSQUIRRELVM v) { SQObject &closure = stack_get(v, 2); v->Push(closure);
- SQInteger nArgs;
- SQInteger nArgs = 0; if(sq_type(closure) == OT_CLOSURE) { nArgs = _closure(closure)->_function->_nparameters; }
Kamailio (SER) - Development Mailing List sr-dev@lists.kamailio.org https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev