08.01.2013, 20:23
This not fixed.
pawn Code:
public OnFilterScriptInit()
{
new empty[16];//not assigning a string, then it is null. If formatting it as "" it will add the /0 character to the first byte
CallLocalFunction("test","s",empty);//afaik print doesn't crash with empty strings, calllocalfunction does
return 1;
}
forward test(aaa[]);
public test(aaa[])
{
print(aaa);
return 1;
}