summaryrefslogtreecommitdiff
path: root/linux-core
diff options
context:
space:
mode:
authorMaarten Maathuis <madman2003@gmail.com>2008-06-22 19:04:22 +0200
committerMaarten Maathuis <madman2003@gmail.com>2008-06-22 19:04:22 +0200
commitb0b0f374432ecf84b5115130caa4697d6d1ca789 (patch)
tree7b626637a54f3c200932f72247570005962f3bd5 /linux-core
parent7c9551a464e168279224139b70a439f985b601c9 (diff)
NV50: Fix a few more possible leaks.
Diffstat (limited to 'linux-core')
-rw-r--r--linux-core/nv50_lut.c24
1 files changed, 20 insertions, 4 deletions
diff --git a/linux-core/nv50_lut.c b/linux-core/nv50_lut.c
index cb52f27f..5cdf6b5d 100644
--- a/linux-core/nv50_lut.c
+++ b/linux-core/nv50_lut.c
@@ -34,6 +34,7 @@ static int nv50_lut_alloc(struct nv50_crtc *crtc)
struct mem_block *block;
struct drm_file *file_priv = kzalloc(sizeof(struct drm_file), GFP_KERNEL);
uint32_t flags = NOUVEAU_MEM_INTERNAL | NOUVEAU_MEM_FB | NOUVEAU_MEM_MAPPED;
+ int rval = 0;
NV50_DEBUG("\n");
@@ -43,12 +44,20 @@ static int nv50_lut_alloc(struct nv50_crtc *crtc)
/* Any file_priv should do as it's pointer is used as identification. */
block = nouveau_mem_alloc(crtc->dev, 0, 4096, flags, file_priv);
- if (!block)
- return -ENOMEM;
+ if (!block) {
+ rval = -ENOMEM;
+ goto out;
+ }
crtc->lut->block = block;
return 0;
+
+out:
+ if (file_priv)
+ kfree(file_priv);
+
+ return rval;
}
static int nv50_lut_free(struct nv50_crtc *crtc)
@@ -144,8 +153,9 @@ int nv50_lut_create(struct nv50_crtc *crtc)
return -ENOMEM;
rval = nv50_lut_alloc(crtc);
- if (rval != 0)
- return rval;
+ if (rval != 0) {
+ goto out;
+ }
/* lut will be inited when fb is bound */
crtc->lut->depth = 0;
@@ -154,6 +164,12 @@ int nv50_lut_create(struct nv50_crtc *crtc)
crtc->lut->set = nv50_lut_set;
return 0;
+
+out:
+ if (crtc->lut)
+ kfree(crtc->lut);
+
+ return rval;
}
int nv50_lut_destroy(struct nv50_crtc *crtc)