Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2480ee71 authored by Dave Airlie's avatar Dave Airlie
Browse files

Merge branch 'linux-4.15' of git://github.com/skeggsb/linux into drm-fixes

nouveau memleak fix

* 'linux-4.15' of git://github.com/skeggsb/linux:
  drm/nouveau: fix obvious memory leak
parents 51b83e14 4ef92892
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,8 +67,8 @@ nouveau_vma_del(struct nouveau_vma **pvma)
			nvif_vmm_put(&vma->vmm->vmm, &tmp);
		}
		list_del(&vma->head);
		*pvma = NULL;
		kfree(*pvma);
		*pvma = NULL;
	}
}