Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Library leaks memory if initializing field panics #9

Open
Voultapher opened this issue Apr 11, 2022 · 0 comments
Open

Library leaks memory if initializing field panics #9

Voultapher opened this issue Apr 11, 2022 · 0 comments

Comments

@Voultapher
Copy link

#[derive(Builder, Debug)]
struct Orange {
    a: String,
    b: String,
}
 
fn main() {
    let orange = Orange::builder()
        .set_a("xxx".into())
        .set_b(panic!())
        .build();
 
    dbg!(orange);
}
cargo +nightly miri run
 
The following memory was leaked: alloc1014 (Rust heap, size: 3, align: 1) {
    78 78 78                                        │ xxx
}

This can be addressed by using a scope guard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant