Skip to content

Commit 256fa0d

Browse files
authored
Merge pull request #289 from ionut-arm/deref-nullptr
Suppress deref_nullptr warnings
2 parents 63cdddb + 7dd2317 commit 256fa0d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tss-esapi-sys/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
clippy::all,
1212
unused
1313
)]
14+
// Suppress warnings from bindgen-generated code
15+
// Remove on resolution of
16+
// https://github.com/rust-lang/rust-bindgen/issues/1651
17+
#![allow(deref_nullptr)]
1418
///! This crate provides a basic interface for accessing the TSS Enhanced
1519
///! System API from Rust. No abstraction is provided beyond what is
1620
///! automatically generated by `bindgen` - the `tss-esapi` crate is the

0 commit comments

Comments
 (0)