Bug in AngelScript 1.8.0a?

Started by
1 comment, last by Dentoid 19 years, 9 months ago
Hi I've had some crashes in as_compiler_expressions.cpp:1752 The line looks like this: desc = builder->module->scriptFunctions[funcs[n]]; This gave an out of range index. Changing it to this cured my problems: desc = builder->module->scriptFunctions[funcs[n]-builder->module->moduleID]; I can't really give a very good bugreport or anything since I haven't had time to explore things thoroughly. Hope it's of some use. :) /Anders Stenberg
Advertisement
It's a bug alright. Thanks for letting me know. Actually the bug is related to the one I already fixed with 1.8.0a, though in another location.

bug fix:

Exchange lines 1748 - 1752:

asCScriptFunction *desc;if( funcs[n] < 0 )  desc = builder->engine->systemFunctions[-funcs[n] - 1];else  desc = builder->module->scriptFunctions[funcs[n]];


for

asCScriptFunction *desc = builder->GetFunctionDescription(funcs[n]);


Your fix also works. But only for this version where there is no connection between modules.

I'll upload a new version as soon as possible. Sorry about any inconveniance caused by the buggy release.

Regards,
Andreas

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

Quote:Original post by WitchLord
Your fix also works. But only for this version where there is no connection between modules.


Yeah, I guessed so but didn't have time to figure out a proper fix. :)

Thanks anyway.

This topic is closed to new replies.

Advertisement