Changes in uspace/app/sbi/src/imode.c [051b3db8:c5cb943d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/imode.c
r051b3db8 rc5cb943d 1 1 /* 2 * Copyright (c) 201 1Jiri Svoboda2 * Copyright (c) 2010 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 178 178 /* Convert expression result to value item. */ 179 179 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 or190 * if the conversion to value item raised an exception.191 */192 if (rexpr_vi != NULL) {193 180 assert(rexpr_vi->ic == ic_value); 194 181 … … 197 184 rdata_value_print(rexpr_vi->u.value); 198 185 printf("\n"); 199 200 rdata_item_destroy(rexpr_vi);201 186 } 202 187 } 203 204 run_proc_ar_destroy(&run, proc_ar);205 188 206 189 /* Remove block visit record from the stack, */
Note:
See TracChangeset
for help on using the changeset viewer.