<html>
    <head>
      <base href="http://bugzilla.scilab.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
         <tr>
                <th>Reporter</th>
            <td>soeren.muennig@richard-wolf.com</td>
         </tr>
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - "Warning: stack problem..., cleared." while using try/catch in function with evstr()"
   href="http://bugzilla.scilab.org/show_bug.cgi?id=13846">13846</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>"Warning: stack problem..., cleared." while using try/catch in function with evstr()
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>Scilab software
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>5.5.2 final version
          </td>
        </tr>


        <tr>
          <th>OS</th>
          <td>Windows_x64
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Minor
          </td>
        </tr>


        <tr>
          <th>Component</th>
          <td>Scilab
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>bugzilla.admin@scilab.org
          </td>
        </tr>
</table>
      <p>
        <div>
        <pre>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</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are watching all bug changes.</li>
      </ul>
    </body>
</html>