You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
In atw_vulkan.c, at least, dlsym is used as though it's guarantied the symbol being looked up exists. This may not be correct as it assumes that the Vulkan Loader was built and installed correctly.
To be correct dlsym should be wrapped in dlerror calls and given the usage here it may make sense to put this handling into a function that reports error and exits on symbol not found.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In atw_vulkan.c, at least, dlsym is used as though it's guarantied the symbol being looked up exists. This may not be correct as it assumes that the Vulkan Loader was built and installed correctly.
To be correct dlsym should be wrapped in dlerror calls and given the usage here it may make sense to put this handling into a function that reports error and exits on symbol not found.
The text was updated successfully, but these errors were encountered: