Commit fcec20e
committed
Don't panic in VecInner::extend and return a Result
Other methods for extending VecInner already return results instead of
panicking. In case of VecInner::extend, avoiding a panic by checking
that the actual amount of elements to extend with fits beforehand is not
generally possible.
So attempt to add the elements from the iterator and restore the
original length in case of an error.1 parent b8fa753 commit fcec20e
3 files changed
+34
-12
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
586 | 586 | | |
587 | 587 | | |
588 | 588 | | |
589 | | - | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
590 | 592 | | |
591 | 593 | | |
592 | 594 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
621 | 621 | | |
622 | 622 | | |
623 | 623 | | |
624 | | - | |
625 | | - | |
626 | | - | |
627 | | - | |
628 | | - | |
| 624 | + | |
629 | 625 | | |
630 | 626 | | |
631 | 627 | | |
632 | | - | |
633 | | - | |
634 | | - | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + | |
635 | 637 | | |
636 | 638 | | |
637 | 639 | | |
| |||
1404 | 1406 | | |
1405 | 1407 | | |
1406 | 1408 | | |
1407 | | - | |
| 1409 | + | |
1408 | 1410 | | |
1409 | 1411 | | |
1410 | 1412 | | |
| |||
1416 | 1418 | | |
1417 | 1419 | | |
1418 | 1420 | | |
1419 | | - | |
| 1421 | + | |
| 1422 | + | |
1420 | 1423 | | |
1421 | 1424 | | |
1422 | 1425 | | |
| |||
1808 | 1811 | | |
1809 | 1812 | | |
1810 | 1813 | | |
1811 | | - | |
| 1814 | + | |
1812 | 1815 | | |
1813 | 1816 | | |
1814 | 1817 | | |
| |||
2119 | 2122 | | |
2120 | 2123 | | |
2121 | 2124 | | |
| 2125 | + | |
| 2126 | + | |
| 2127 | + | |
| 2128 | + | |
| 2129 | + | |
| 2130 | + | |
| 2131 | + | |
| 2132 | + | |
| 2133 | + | |
| 2134 | + | |
| 2135 | + | |
| 2136 | + | |
| 2137 | + | |
| 2138 | + | |
| 2139 | + | |
| 2140 | + | |
2122 | 2141 | | |
2123 | 2142 | | |
2124 | 2143 | | |
| |||
0 commit comments