File tree 1 file changed +11
-7
lines changed
1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -477,13 +477,14 @@ pub(crate) fn default_read_to_end<R: Read + ?Sized>(
477
477
}
478
478
479
479
let mut cursor = read_buf. unfilled ( ) ;
480
- loop {
480
+ let result = loop {
481
481
match r. read_buf ( cursor. reborrow ( ) ) {
482
- Ok ( ( ) ) => break ,
483
482
Err ( e) if e. is_interrupted ( ) => continue ,
484
- Err ( e) => return Err ( e) ,
483
+ // Do not stop now in case of error: we might have received both data
484
+ // and an error
485
+ res => break res,
485
486
}
486
- }
487
+ } ;
487
488
488
489
let unfilled_but_initialized = cursor. init_ref ( ) . len ( ) ;
489
490
let bytes_read = cursor. written ( ) ;
@@ -493,15 +494,18 @@ pub(crate) fn default_read_to_end<R: Read + ?Sized>(
493
494
return Ok ( buf. len ( ) - start_len) ;
494
495
}
495
496
496
- // store how much was initialized but not filled
497
- initialized = unfilled_but_initialized;
498
-
499
497
// SAFETY: BorrowedBuf's invariants mean this much memory is initialized.
500
498
unsafe {
501
499
let new_len = bytes_read + buf. len ( ) ;
502
500
buf. set_len ( new_len) ;
503
501
}
504
502
503
+ // Now that all data is pushed to the vector, we can fail without data loss
504
+ result?;
505
+
506
+ // store how much was initialized but not filled
507
+ initialized = unfilled_but_initialized;
508
+
505
509
// Use heuristics to determine the max read size if no initial size hint was provided
506
510
if size_hint. is_none ( ) {
507
511
// The reader is returning short reads but it doesn't call ensure_init().
You can’t perform that action at this time.
0 commit comments