VirtualBox

Changeset 2573 in kBuild for trunk/src


Ignore:
Timestamp:
May 13, 2012 7:39:47 PM (13 years ago)
Author:
bird
Message:

bugfix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/expreval.c

    r2413 r2573  
    19801980        do  rc = expr_get_unary_or_operand(pThis);
    19811981        while (rc == kExprRet_Operator);
    1982         if (rc < kExprRet_Error)
     1982        if (rc < kExprRet_Ok)
    19831983            break;
    19841984
     
    19871987         */
    19881988        rc = expr_get_binary_or_eoe_or_rparen(pThis);
    1989         if (rc < kExprRet_Error)
     1989        if (rc < kExprRet_Ok)
    19901990            break;
    19911991        expr_unget_op(pThis);
     
    20032003            assert(pThis->iVar + 1 >= pOp->cArgs);
    20042004            rc = pOp->pfn(pThis);
    2005             if (rc < kExprRet_Error)
     2005            if (rc < kExprRet_Ok)
    20062006                break;
    20072007        }
    2008         if (rc < kExprRet_Error)
     2008        if (rc < kExprRet_Ok)
    20092009            break;
    20102010
     
    20142014         */
    20152015        rc = expr_get_binary_or_eoe_or_rparen(pThis);
    2016         if (rc < kExprRet_Error)
     2016        if (rc < kExprRet_Ok)
    20172017            break;
    20182018        pOp = pThis->apOps[pThis->iOp];
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette