View · Search · Index
No registered users in community xowiki
in last 10 minutes

[Xotcl] NX: crash report

From: Victor Mayevski <vitick_at_gmail.com>
Date: Wed, 13 Apr 2011 16:52:45 -0700

The following (incorrect) usage will cause a crash:

*****
% o attribute {a v}
::o::a
% o::a #Incorrect usage
Segmentation fault
*****

The next one, however, does not crash:

*****
% Object create o
::o
% o attribute {a v}
::o::a
% o a # Correct usage first
v
% o::a # Incorrect usage
can't read "o::a": no such variable
    while executing
"o::a"
%
*****