Changeset 4fec9ee in mainline for uspace/app/sbi/src/imode.c
- Timestamp:
- 2011-03-18T16:17:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 00b13408
- Parents:
- 4f66cc7b (diff), d8e61b0d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/imode.c
r4f66cc7b r4fec9ee 1 1 /* 2 * Copyright (c) 201 0Jiri Svoboda2 * Copyright (c) 2011 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 or 190 * if the conversion to value item raised an exception. 191 */ 192 if (rexpr_vi != NULL) { 180 193 assert(rexpr_vi->ic == ic_value); 181 194 … … 184 197 rdata_value_print(rexpr_vi->u.value); 185 198 printf("\n"); 199 200 rdata_item_destroy(rexpr_vi); 186 201 } 187 202 } 203 204 run_proc_ar_destroy(&run, proc_ar); 188 205 189 206 /* Remove block visit record from the stack, */
Note:
See TracChangeset
for help on using the changeset viewer.