diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-08-12 18:08:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-12 19:07:29 -0400 |
commit | 5ede40f87957c6ededf9284c8339722a97b9dfb6 (patch) | |
tree | 7bfadd8db09bda249aa06c387315267e34ee17f7 | |
parent | d6bf73e4340f52159c1d9f13836b62e20fcd12d3 (diff) |
matrox maven: fix a broken error path
I broke an error path with d03c21ec0be7787ff6b75dcf56c0e96209ccbfbd,
sorry about that.
The machine will crash if the i2c_attach_client() or maven_init_client()
calls fail, although nobody has yet reported this happening.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Cc: Petr Vandrovec <VANDROVE@vc.cvut.cz>
Cc: <stable@kernel.org> [2.6.25.x, 2.6.26.x]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/video/matrox/matroxfb_maven.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/matrox/matroxfb_maven.c b/drivers/video/matrox/matroxfb_maven.c index 89da27bd5c49..2ad06b0125c3 100644 --- a/drivers/video/matrox/matroxfb_maven.c +++ b/drivers/video/matrox/matroxfb_maven.c | |||
@@ -1266,7 +1266,7 @@ static int maven_detect_client(struct i2c_adapter* adapter, int address, int kin | |||
1266 | ERROR4:; | 1266 | ERROR4:; |
1267 | i2c_detach_client(new_client); | 1267 | i2c_detach_client(new_client); |
1268 | ERROR3:; | 1268 | ERROR3:; |
1269 | kfree(new_client); | 1269 | kfree(data); |
1270 | ERROR0:; | 1270 | ERROR0:; |
1271 | return err; | 1271 | return err; |
1272 | } | 1272 | } |