Fixes: Nil scheduled space bug with hashes. This is still a bug everywhere else.

This commit is contained in:
jaynus
2015-05-15 10:45:07 -07:00
parent 8d7f9c9a0d
commit e1c3e96eb1
2 changed files with 5 additions and 1 deletions

View File

@ -23,4 +23,6 @@ try {
} catch { } catch {
HANDLECATCH; HANDLECATCH;
}; };
_val
if (isNil "_val") exitWith { nil };
_val;

View File

@ -23,4 +23,6 @@ try {
} catch { } catch {
HANDLECATCH; HANDLECATCH;
}; };
if (isNil "_hash") exithWith { nil };
_hash; _hash;