Makopo/lslint

Warning about uninitialized global strings/keys in LSO

Closed this issue · 0 comments

This script causes a Bounds Check Error in LSO:

string a;
string b = a;
default
{
    state_entry()
    {
        llOwnerSay(b);
    }
}

Try to detect it and emit a warning. In Mono it works fine.