mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-12 21:52:33 +00:00
95476dccd9
closes: #322
10 lines
261 B
Rust
10 lines
261 B
Rust
use crate::get_reader;
|
|
use lofty::picture::PictureInformation;
|
|
|
|
#[test]
|
|
fn crash1() {
|
|
let reader =
|
|
get_reader("pictureinformation_from_png/crash-9cca0ac668e4735a0aac8eddb91a50b9351b419c");
|
|
|
|
let _ = PictureInformation::from_png(reader.get_ref()).unwrap();
|
|
}
|