[Bugzilla] [Bug 13846] New: "Warning: stack problem..., cleared." while using try/catch in function with evstr()
bugzilla.admin at scilab.org
bugzilla.admin at scilab.org
Tue Apr 28 11:11:31 CEST 2015
http://bugzilla.scilab.org/show_bug.cgi?id=13846
--------- Bug Summary -----------
"Warning: stack problem..., cleared." while using try/catch in function with evstr()
---------- Changed by ------------
soeren.muennig at richard-wolf.com
---------- What changed ----------
bug_id, short_desc, product, version, rep_platform, op_sys, bug_status, bug_severity, priority, component, assigned_to, reporter
Bug ID: 13846
Summary: "Warning: stack problem..., cleared." while using
try/catch in function with evstr()
Product: Scilab software
Version: 5.5.2 final version
Hardware: PC
OS: Windows_x64
Status: NEW
Severity: Minor
Priority: P5
Component: Scilab
Assignee: bugzilla.admin at scilab.org
Reporter: soeren.muennig at richard-wolf.com
BUG DESCRIPTION:
----------------
warning occurs while using try/catch in function with evstr() (works fine while not inside a function)
Message: "Warning: stack problem..., cleared."
ERROR LOG:
----------
"Warning: stack problem..., cleared."
HOW TO REPRODUCE THE BUG:
-------------------------
function b=test()
a=['sin(30)','0';'0','test']
try
b=evstr(a);
catch
b=-1;
end;
endfunction
test();
OTHER INFORMATION:
------------------
error is just shown in case of "catch" execution. Example: If 'test' is switched to '0' all works fine.
Works fine while code is not inside a function as well. Example:
a=['sin(30)','0';'0','test']
try
b=evstr(a);
catch
b=-1;
end;
disp(b)
provides: b=-1
--
You are receiving this mail because:
You are watching all bug changes.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/bugzilla/attachments/20150428/07554ba6/attachment.htm>
More information about the Bugzilla
mailing list