Skip to content

Commit 7098f77

Browse files
committed
rrd compare: fix missing bufreader
1 parent 884708b commit 7098f77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/top/rerun/src/commands/rrd/compare.rs

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ fn compute_uber_table(
9090
use re_log_types::StoreId;
9191

9292
let rrd_file = std::fs::File::open(path_to_rrd).context("couldn't open rrd file contents")?;
93+
let rrd_file = std::io::BufReader::new(rrd_file);
9394

9495
let mut stores: std::collections::HashMap<StoreId, EntityDb> = Default::default();
9596
let version_policy = re_log_encoding::decoder::VersionPolicy::Error;

0 commit comments

Comments
 (0)