Merge branch 'wip/glx-reset-client' into 'main'

glx: fix duplicate tagInfo->vendor = NULL assignment

See merge request xorg/xserver!2226
This commit is contained in:
Peter Hutterer 2026-06-02 11:09:52 +10:00
commit ff7e392aff

View file

@ -158,7 +158,7 @@ GlxContextTagInfo *GlxLookupContextTag(ClientPtr client, GLXContextTag tag)
void GlxFreeContextTag(GlxContextTagInfo *tagInfo)
{
if (tagInfo != NULL) {
tagInfo->vendor = NULL;
tagInfo->client = NULL;
tagInfo->vendor = NULL;
tagInfo->data = NULL;
tagInfo->context = None;