Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/imode.c

    r051b3db8 rc5cb943d  
    11/*
    2  * Copyright (c) 2011 Jiri Svoboda
     2 * Copyright (c) 2010 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    178178                        /* Convert expression result to value item. */
    179179                        run_cvt_value_item(&run, rexpr, &rexpr_vi);
    180                         rdata_item_destroy(rexpr);
    181 
    182                         /* Check for unhandled exceptions. */
    183                         run_exc_check_unhandled(&run);
    184                 } else {
    185                         rexpr_vi = NULL;
    186                 }
    187 
    188                 /*
    189                  * rexpr_vi can be NULL if either repxr was null or
    190                  * if the conversion to value item raised an exception.
    191                  */
    192                 if (rexpr_vi != NULL) {
    193180                        assert(rexpr_vi->ic == ic_value);
    194181
     
    197184                        rdata_value_print(rexpr_vi->u.value);
    198185                        printf("\n");
    199 
    200                         rdata_item_destroy(rexpr_vi);
    201186                }
    202187        }
    203 
    204         run_proc_ar_destroy(&run, proc_ar);
    205188
    206189        /* Remove block visit record from the stack, */
Note: See TracChangeset for help on using the changeset viewer.