We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example: "helpUri": ""
"helpUri": ""
Strictly speaking this is invalid SARIF (the value is not a URI) but a prominent SARIF producer creates this output.
Instead of crashing, just don't populate the property (return null).
null
This is the root cause of microsoft/sarif-visualstudio-extension#85.
The text was updated successfully, but these errors were encountered:
Fix #1632: UriConverter crashes with NullReferenceException on empty URI
88485ac
The empty string is a valid relative URI although not a valid absolute URI (per RFC 3986).
fbe73e6
Fix #85: Can't open files containing empty string URIs (#103)
a8f2874
This PR updates the VSIX to use version 2.1.13 of the SARIF SDK, which fixes microsoft/sarif-sdk#1632, the root cause of #85.
Successfully merging a pull request may close this issue.
Example:
"helpUri": ""
Strictly speaking this is invalid SARIF (the value is not a URI) but a prominent SARIF producer creates this output.
Instead of crashing, just don't populate the property (return
null
).This is the root cause of microsoft/sarif-visualstudio-extension#85.
The text was updated successfully, but these errors were encountered: