st/mesa: Fix NULL pointer dereference for incomplete framebuffers
This can happen with glamor, which uses EGL_KHR_surfaceless_context and only explicitly binds GL_READ_FRAMEBUFFER for glReadPixels. Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
committed by
Michel Dänzer
parent
151a20dcd4
commit
136c437cea
@@ -183,8 +183,13 @@ st_framebuffer_validate(struct st_framebuffer *stfb,
|
||||
uint width, height;
|
||||
unsigned i;
|
||||
boolean changed = FALSE;
|
||||
int32_t new_stamp = p_atomic_read(&stfb->iface->stamp);
|
||||
int32_t new_stamp;
|
||||
|
||||
/* Check for incomplete framebuffers (e.g. EGL_KHR_surfaceless_context) */
|
||||
if (!stfb->iface)
|
||||
return;
|
||||
|
||||
new_stamp = p_atomic_read(&stfb->iface->stamp);
|
||||
if (stfb->iface_stamp == new_stamp)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user