diff options
author | Jesper Juhl <jj@chaosbits.net> | 2011-07-03 19:46:53 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2011-07-24 19:40:52 -0400 |
commit | 1541fa854273abee954ec4ca4ad65fe4ceb9e626 (patch) | |
tree | 01e83ad9133a11d78b73c3999906119c77d34204 /drivers | |
parent | 88c8431cbbccdb9ef7c13f0ba18022e2cb35c7f7 (diff) |
drm/nouveau: do not leak in nv20_graph_create
If we return due to an unknown chipset in
drivers/gpu/drm/nouveau/nv20_graph.c:nv20_graph_create() we'll leak the
memory allocated to 'pgraph'.
This patch should fix the leak.
Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Reviewed-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv20_graph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nv20_graph.c b/drivers/gpu/drm/nouveau/nv20_graph.c index affc7d7dd029..f8736270f62f 100644 --- a/drivers/gpu/drm/nouveau/nv20_graph.c +++ b/drivers/gpu/drm/nouveau/nv20_graph.c | |||
@@ -753,6 +753,7 @@ nv20_graph_create(struct drm_device *dev) | |||
753 | break; | 753 | break; |
754 | default: | 754 | default: |
755 | NV_ERROR(dev, "PGRAPH: unknown chipset\n"); | 755 | NV_ERROR(dev, "PGRAPH: unknown chipset\n"); |
756 | kfree(pgraph); | ||
756 | return 0; | 757 | return 0; |
757 | } | 758 | } |
758 | } else { | 759 | } else { |
@@ -774,6 +775,7 @@ nv20_graph_create(struct drm_device *dev) | |||
774 | break; | 775 | break; |
775 | default: | 776 | default: |
776 | NV_ERROR(dev, "PGRAPH: unknown chipset\n"); | 777 | NV_ERROR(dev, "PGRAPH: unknown chipset\n"); |
778 | kfree(pgraph); | ||
777 | return 0; | 779 | return 0; |
778 | } | 780 | } |
779 | } | 781 | } |