Changeset 20819
- Timestamp:
- Nov 24, 2008, 10:43:38 AM (17 years ago)
- Location:
- trunk/Ohana/src/opihi/dvo
- Files:
-
- 3 edited
-
avextract.c (modified) (1 diff)
-
mextract.c (modified) (1 diff)
-
mmextract.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/dvo/avextract.c
r20575 r20819 65 65 // parse stack elements into fields and scalars as needed 66 66 Nreturn = Nfields; 67 dbCheckStack (stack, Nstack, DVO_TABLE_AVERAGE, &fields, &Nfields);67 if (!dbCheckStack (stack, Nstack, DVO_TABLE_AVERAGE, &fields, &Nfields)) goto escape; 68 68 // XXX handle errors 69 69 -
trunk/Ohana/src/opihi/dvo/mextract.c
r20535 r20819 70 70 // parse stack elements into fields and scalars as needed 71 71 Nreturn = Nfields; 72 dbCheckStack (stack, Nstack, DVO_TABLE_MEASURE, &fields, &Nfields);72 if (!dbCheckStack (stack, Nstack, DVO_TABLE_MEASURE, &fields, &Nfields)) goto escape; 73 73 // XXX handle errors 74 74 -
trunk/Ohana/src/opihi/dvo/mmextract.c
r19579 r20819 120 120 Nreturn = 2*Nfields; // we are returning fieldi_1, fieldi_2 for the selected fields 121 121 122 dbCheckStack (stack1, Nstack1, DVO_TABLE_MEASURE, &fields, &Nfields);123 dbCheckStack (stack2, Nstack2, DVO_TABLE_MEASURE, &fields, &Nfields);122 if (!dbCheckStack (stack1, Nstack1, DVO_TABLE_MEASURE, &fields, &Nfields)) goto escape; 123 if (!dbCheckStack (stack2, Nstack2, DVO_TABLE_MEASURE, &fields, &Nfields)) goto escape; 124 124 // XXX handle errors 125 125
Note:
See TracChangeset
for help on using the changeset viewer.
