onnxruntime
1a684152
- Fix C6011: dereferencing NULL pointer with_data (and external_data) (#12982)
Go
Login via GitHub
Home
Pricing
FAQ
Install
Login
via GitHub
Commit
View On
GitHub
Commit
3 years ago
Fix C6011: dereferencing NULL pointer with_data (and external_data) (#12982) As title. For pattern like ```cpp foo(*ptr) ``` we change them to ```cpp if (ptr) foo(*ptr) else throw ```
References
#12982 - Fix C6011: dereferencing NULL pointer with_data (and external_data)
Author
wschin
Parents
12aab3c0
Loading