diff options
Diffstat (limited to 'src/components/net/file_loader.rs')
-rw-r--r-- | src/components/net/file_loader.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/net/file_loader.rs b/src/components/net/file_loader.rs index 917d1ebc12c..0b8d5240bc2 100644 --- a/src/components/net/file_loader.rs +++ b/src/components/net/file_loader.rs @@ -8,7 +8,8 @@ use std::io; use std::io::File; use servo_util::task::spawn_named; -static READ_SIZE: uint = 1024; +//FIXME: https://github.com/mozilla/rust/issues/12892 +static READ_SIZE: uint = 1; fn read_all(reader: &mut io::Stream, progress_chan: &Chan<ProgressMsg>) -> Result<(), ()> { |