[WIN32SS] Fix some memory leaks (introduced in 21ddeb76d9)

This commit is contained in:
Hervé Poussineau 2022-04-18 16:22:30 +02:00
parent f63e8f8a03
commit aa80cfb46e

View file

@ -596,11 +596,13 @@ LDEVOBJ_bBuildDevmodeList(
if (!pdminfo)
{
ERR("Could not allocate devmodeinfo\n");
ExFreePoolWithTag(pdm, GDITAG_DEVMODE);
continue;
}
pdminfo->cbdevmode = cbSize;
RtlCopyMemory(pdminfo->adevmode, pdm, cbSize);
ExFreePoolWithTag(pdm, GDITAG_DEVMODE);
/* Attach the mode info to the device */
pdminfo->pdmiNext = pGraphicsDevice->pdevmodeInfo;