onnxruntime
1a684152 - Fix C6011: dereferencing NULL pointer with_data (and external_data) (#12982)

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 ```
Author
Parents
Loading