Author :
Ryan C. Gordon
Date :
2018-02-11 18:16:01
Hash :882215e1 Message :vulkan: Fix assignment of vkGetInstanceProcAddr on Windows.
"*(void**)pfn = LoadAddress()" would cast the NULL pointer in pfn to a
void**, and then dereference it, which wasn't what we wanted. Replaced with
a clearer cast operation.