Module: Mesa Branch: main Commit: aa57e8ef18e452b6ff7bd1dff99bc784ccce8818 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=aa57e8ef18e452b6ff7bd1dff99bc784ccce8818
Author: Yiwei Zhang <[email protected]> Date: Fri May 12 00:47:54 2023 -0700 lvp: avoid accessing member of NULL ptr for global entries Cc: mesa-stable Signed-off-by: Yiwei Zhang <[email protected]> Reviewed-by: Mike Blumenkrantz <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22979> --- src/gallium/frontends/lavapipe/lvp_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/frontends/lavapipe/lvp_device.c b/src/gallium/frontends/lavapipe/lvp_device.c index ed832d5ccbf..60d667dc0f2 100644 --- a/src/gallium/frontends/lavapipe/lvp_device.c +++ b/src/gallium/frontends/lavapipe/lvp_device.c @@ -1472,8 +1472,8 @@ VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL lvp_GetInstanceProcAddr( VkInstance _instance, const char* pName) { - LVP_FROM_HANDLE(lvp_instance, instance, _instance); - return vk_instance_get_proc_addr(&instance->vk, + VK_FROM_HANDLE(vk_instance, instance, _instance); + return vk_instance_get_proc_addr(instance, &lvp_instance_entrypoints, pName); }
